Search found 1127 matches

by lstsaur
Mon Jun 29, 2015 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Grid Tool Kit
Replies: 9
Views: 6106

If you can't even get your test.sh script to run successfully, most likely the installation of the grid_enabled components is not configured correctly.
by lstsaur
Fri Feb 13, 2015 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Correct configuration file not getting generated
Replies: 2
Views: 2719

How many jobs in your job sequence? In each job in the job sequence, you must set the $APT_GRID_ENABLE to NO. Did you specify the Compute Nodes and Partitions parameters in your Execute Command Activity stage? Then your downstream job activity stages using the expressing: Field(stagename.$CommandOut...
by lstsaur
Tue Jan 27, 2015 8:20 pm
Forum: General
Topic: About workload management
Replies: 3
Views: 4450

What resource management software are you using? PBS Pro, IBM LoadLeveler, or SUN Grid Engine? Basically the main use of any workload management software is to do the queuing, scheduling, and monitoring the system resources and enforcing the usage policy. I love to use the PBS Pro; especially its Jo...
by lstsaur
Mon Jul 14, 2014 9:53 am
Forum: General
Topic: Not getting the listing of 31531 port via netstat -an
Replies: 13
Views: 11986

What you should do now is
lsof -P | grep 31531.
by lstsaur
Sun Jul 13, 2014 7:16 am
Forum: General
Topic: Not getting the listing of 31531 port via netstat -an
Replies: 13
Views: 11986

By default, 31531 is the port number used by the ASB Node agent. So, you need to start your ASB Node agent.
by lstsaur
Tue May 27, 2014 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connect to AS/400 or I series
Replies: 1
Views: 2319

Do a search on "catalog tcpip", you will find the detailed steps in my post regarding how to connect to AS/400.
by lstsaur
Wed May 21, 2014 1:29 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: ISD stages license requirnment
Replies: 6
Views: 8354

What you need to do is to create users and assign the roles accordingly. Don't understand why you even use "root" to access the DS?
by lstsaur
Sat Apr 26, 2014 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Physical Vs. Virtual Head nodes on a grid
Replies: 3
Views: 4056

The performance may be less because you don't know what the performance impact will be by the workload of other instances on the same hardware node.

Good thing about grid is that jobs don't run on the head node. So no big deal for using virtual server or physical server for the head node.
by lstsaur
Fri Apr 25, 2014 5:02 pm
Forum: General
Topic: Gracefully shutting down DataStage.
Replies: 13
Views: 18108

The problem is that fin_wait_2 has already occurred and stuck on the server side before you even realize there is a problem. You have to clear up this problem first manually. Of course IF you can get "ALL" the client sessions closed/killed prior to shutting down the DataStage engine, then ...
by lstsaur
Fri Apr 25, 2014 12:50 pm
Forum: General
Topic: Gracefully shutting down DataStage.
Replies: 13
Views: 18108

Still that wouldn't solve your fin_wait_2 problem.
by lstsaur
Thu Apr 24, 2014 6:05 pm
Forum: General
Topic: Gracefully shutting down DataStage.
Replies: 13
Views: 18108

You issue a
1. lsof -P
2. find the pid of that fin_waite2
3. kill that pid
4. restart the DS.
by lstsaur
Tue Apr 15, 2014 3:08 pm
Forum: General
Topic: DS 9.1 Windows or Linux
Replies: 8
Views: 6899

In your case, stay with the Windows. Let me ask you a simple question, would you promote an application into production knowing it has no support?
by lstsaur
Thu Apr 10, 2014 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector stage issue
Replies: 9
Views: 6774

What you can do is
1.) lsof -P | grep 31533
2.) Find pid
3.) Kill pid
4.) Restart Ds
by lstsaur
Wed Mar 26, 2014 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grid Implementation
Replies: 4
Views: 4047

I have always built NAS-based configuration grid environment because it's much lower cost and simpler to implement multiple head nodes and HA. Make sure compute nodes have multiple NIC cards for public and private network connections. And the host name of the nodes is translated correctly in the pri...
by lstsaur
Tue Mar 25, 2014 3:25 pm
Forum: General
Topic: JDBC for the connection between the ETL tool and the iSeries
Replies: 5
Views: 3587

Another way to do it is to set up JDBC on the WebSphere App. Server side. Just go to App. Server Admin Console-->Resources-->JDBC providers. You can even implement advanced function such as JDBC connection pool data source.