Search found 53125 matches

by ray.wurlod
Thu Apr 30, 2015 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is aptvds0_o0_i0_stno0?
Replies: 8
Views: 3530

apt = Applied Parallel Technologies (the precursor company to Torrent) vds = virtual Data Set The numeric components deal with the node number and other factors that place the data set within the step (job). The error (failed to find file or directory) was reported by the link that is connected to i...
by ray.wurlod
Thu Apr 30, 2015 9:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Call SSIS package from DataStage 9.1
Replies: 9
Views: 3473

Why do you want to invoke what amounts to one ETL tool from another?!!
by ray.wurlod
Thu Apr 30, 2015 9:33 pm
Forum: General
Topic: Oracle 12c supported?
Replies: 8
Views: 10546

Don't you hate the way Oracle, and Oracle practitioners, put the Oracle entries at the beginning of PATH and LD_LIBRARY_PATH, as if they were the only software worth considering. This has caused problems in the past. For DataStage, you should ensure that the DataStage libraries, etc., are found befo...
by ray.wurlod
Wed Apr 29, 2015 4:37 pm
Forum: General
Topic: The timezone environment variable TZ is currently not set
Replies: 2
Views: 7647

Or, if your UNIX Administrator can't/won't do it, add the following line to your dsenv file.

Code: Select all

 TZ=:/etc/localtime ; export TZ
by ray.wurlod
Tue Apr 28, 2015 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle append method without duplicates entry
Replies: 5
Views: 1908

I thought you weren't allowed to use the Extract Date ?
by ray.wurlod
Tue Apr 28, 2015 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling delmiters coming with quote in sequential file
Replies: 4
Views: 1217

Note that delimiter and delimiter string are different properties. The delimiter property is limited to a single character, the delimiter string property is not.

So, to reiterate what Craig advised, try setting the delimiter string property to "|".
by ray.wurlod
Tue Apr 28, 2015 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading MHTML/XLS file using Unstructured Data stage
Replies: 1
Views: 740

Welcome aboard.

I'm not aware of any such stage out of the box, but DataStage does permit you to write your own custom stage types, so that may be an avenue to explore if you are comfortable with the C++ programming language. (Otherwise you could hire someone to do that work for you.)
by ray.wurlod
Tue Apr 28, 2015 3:18 pm
Forum: General
Topic: How to encrypt password in dsrun.sh script w/ DataStage 8.5
Replies: 1
Views: 804

You are correct that the encrypt utility does not exist in version 8,5. Since dsrun.sh is one of your own, one solution would be to have it read the password from a file owned by the executing user and to which no-one else has any access. Another way would be to use 700 permission on the dsrun.sh sc...
by ray.wurlod
Tue Apr 28, 2015 3:15 pm
Forum: General
Topic: connect to ds engine
Replies: 3
Views: 1825

Why not just change the maximum number of Remote Desktop users on the server?
by ray.wurlod
Tue Apr 28, 2015 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic job DB to DB load with Upsert Write mode
Replies: 4
Views: 2464

Use a Modify stage, which can accept a job parameter as a column name in a derivation expression.
by ray.wurlod
Tue Apr 28, 2015 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using the COMMON across jobs
Replies: 4
Views: 3842

Unlimited dynamic array size until you run out of memory.
by ray.wurlod
Mon Apr 27, 2015 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using the COMMON across jobs
Replies: 4
Views: 3842

You can, of course, use the job's User Status area to communicate back to its controlling sequence; contents of the User Status area are available through the $UserStatus activity variable for the Job activity.
by ray.wurlod
Sun Apr 26, 2015 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Dependency
Replies: 3
Views: 1545

I prefer to use two jobs from a sequence. The first job identifies the inserts and updates, writes the inserts to a Data Set, and performs the updates. The second job performs the inserts.
by ray.wurlod
Sat Apr 25, 2015 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BDFS Row Column Number
Replies: 3
Views: 1378

Keep in mind, too, that "the file" is not necessary a valid concept in Big Data. Data in what is logically "a file" will more than likely be distributed across nodes in a Hadoop distributed file system or similar. So what can "row number" mean in this context?
by ray.wurlod
Fri Apr 24, 2015 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BDFS Row Column Number
Replies: 3
Views: 1378

Why not perform some experiments and let us know?