Search found 2886 matches

by qt_ky
Tue May 06, 2014 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: the value of the PWD environment variable (/opt/DAT
Replies: 5
Views: 2141

The IBM technote on the warning message (not an error) says it's just a warning and should not effect execution. Although I can see how unexpected warnings could throw off a sequence job. Is this a new warning that started coming recently? I wonder if the admin were in some unusual directory when st...
by qt_ky
Tue May 06, 2014 2:22 pm
Forum: General
Topic: Job control process (pid XXXXXX) has failed
Replies: 2
Views: 2166

It may also help to debug your script by redirecting its output to a new log file. Then you can check in the log file for clues.
by qt_ky
Tue May 06, 2014 2:17 pm
Forum: General
Topic: ODBC entry - Connect to Oracle
Replies: 1
Views: 1081

No spaces in ServiceName: ServiceName=XXX You can setup an ODBC connection without installing the Oracle client or its TNS entry. Even if you configure ODBC correctly, you may still be unable to connect if there is a firewall blocking that connection. Make sure the firewall is open between your serv...
by qt_ky
Tue May 06, 2014 5:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column order changes after restarting DS Services
Replies: 7
Views: 3821

Yes, or install 8.5 Fix Pack 3 which would include the fixes in Fix Pack 2 also. Install on all server and client tiers.
by qt_ky
Sun May 04, 2014 4:37 pm
Forum: Site/Forum
Topic: 40k+ users
Replies: 18
Views: 21443

To update the animated welcome message:
- Find someone who knows Adobe Flash
- Save new Flash file as 30000_Text_Fall.swf
- Upload to home directory

Code: Select all

http://www.dsxchange.com/30000_Text_Fall.swf
by qt_ky
Sun May 04, 2014 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Oracle Wire Protocol driver Oracle Connection Dead
Replies: 9
Views: 4849

Oracle Advanced Security can be installed on any one Oracle database by itself. Ask your DBA if it's installed and requires encrypted client connections.
by qt_ky
Fri May 02, 2014 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File CSV File format
Replies: 5
Views: 3767

Try using the sequential file stage line terminator setting in a server job.
by qt_ky
Thu May 01, 2014 7:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to String
Replies: 19
Views: 8809

Ah, I missed the whole point about the zeros after the decimal; had only noticed the complaint about leading zeros.
by qt_ky
Thu May 01, 2014 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Header Section (variable num rows)
Replies: 7
Views: 1947

Ray's earlier suggestion keeps the order.
ray.wurlod wrote:Make sure to run this Transformer stage in sequential mode.
When a parallel job runs on multiple nodes, the data gets partitioned (buckets) and sort order is not guaranteed.
by qt_ky
Thu May 01, 2014 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to String
Replies: 19
Views: 8809

Just to confirm, the suppress option works as expected on version 8.7 (tested). Field function is not necessary. Am wondering why it doesn't work as expected for others.
by qt_ky
Thu May 01, 2014 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Header Section (variable num rows)
Replies: 7
Views: 1947

ssnegi:

0, 1, 2 don't carry any meaning; points lost for lack of readability...

@TRUE and @FALSE can be understood by anyone who touches the job.

Start to think beyond 3 days and beyond yourself for ongoing maintenance.
by qt_ky
Wed Apr 30, 2014 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tsort and psort
Replies: 15
Views: 7909

When tsort or psort executes in sequential mode, it's called a total sort. When tsort or psort executes in parallel mode, it's called a partition sort or a parallel sort. When you combine a parallel sort with a sort merge collector, it's called a total sort. Records processed by psort must be less t...
by qt_ky
Wed Apr 30, 2014 8:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

APT_RDBMS_COMMIT_ROWS appears to be specific to DB2. Are you saying that solved the problem or asking if it will? Feel free to test it by loading many rows. Open a database session and select count(*) several times while the job runs. Does the record count increase only once after the job completes?
by qt_ky
Wed Apr 30, 2014 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disable Link in runtime
Replies: 4
Views: 1926

The process(es) for each stage will start up and run in parallel, whether or not a given link receives data or is constraint-disabled to not receive any data.

Splitting the job into two is a good solution. It leaves you with two clear job designs.
by qt_ky
Wed Apr 30, 2014 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Enterprise stage - execute nlist
Replies: 1
Views: 1383

With the FTP Enterprise stage, you would need a static, "dummy" data file to get every time. The "Open command" property, under the URI property, can issue the nlist command before it gets the dummy file. nlist syntax: nlist remote_directory local_file The local_file argument sho...