Wednesday, May 30, 2018

Talend Component

- CSCWSJR
cscwsjr

Talend Components


Execution Plan =>select => click >> stop =>pause =>run =>resume plan 
(sometimes wait 2 min)

KL TAC: http://ssx-mp-etl01.ad.shared:8080/org.talend.administrator/
BPI TAC: http://tbb-mp-bpetl02.ad.shared:8080/org.talend.administrator/
PRB TAC: http://tpt-mp-prbetl01.ad.shared:8080/org.talend.administrator/

JobServer : JobServer is an application that allows a system installed on the same network as Talend Administration Center to declare itself as an execution server. 

A component is a functional piece which is used to perform a single operation in Talend.
 Most important and frequently used components which are also used in WD ETL project are mentioned below-
https://help.talend.com/
https://www.edureka.co/blog/talend-tutorial-data-integration/
https://www.youtube.com/watch?v=nazrrSWDy_U&list=PLukhYAGT0p6HcxjSdPZ5YpjbFpjVwdPmt


SITE
odsbpip1 

WSJR

WDB4G

WDMP2


WDMP6

Monday, May 7, 2018

LinkedIn Article

C-1-06, Technopreneur Centre II,
2260 Jalan Usahawan 1,
63000 Cyberjaya
Selangor Darul Ehsan, MALAYSIA

https://www.linkedin.com/post/new

https://www.youtube.com/watch?v=p6tOspDMuZ4



Hi Nazmul,


Please try to download this latest version and export to csv.

Let me know how long it takes to export csv if the table has 10,000 records (10 columns).


Sunday, May 6, 2018

AngularJS Basic

// Define your module. Your module will contain all your
// AngularJS components, including your controllers,
// directives and services.

// Don't forget the square brackets [] when you define
// your module.
var module = angular.module("myModule", []);

// Define you controllers. You bind these to your HTML
// elements using the "ng-controller" attribute.
//
// The $scope  is how you share data and functions
// between the HTML and your controller.
module.controller("myController", function($scope) {
$scope.message = "Hello World";

  $scope.changeMessage = function() {
    // when you change a variable in the $scope
    // the UI is automatically updated with the change
$scope.message = "Hello Universe!";
  };
});


    You clicked the button {{clickCount}} times.
   

angular.module("MyModule", [])
    .controller("MyController", function($scope) {
        $scope.clickCount = 0;

        $scope.userClick = function() {
            $scope.clickCount++;
        };

    });

Driving

 https://youtube.com/shorts/5Ac2qZHrApU?si=_X-G7pJFHiZoD-s7 https://www.youtube.com/watch?v=f6pSsex87oU