Search found 4992 matches

by kcbland
Wed Apr 26, 2006 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Oracle 10g
Replies: 9
Views: 1600

ray.wurlod wrote:I suspect Zabeerulla is on UNIX and is paying the price for hijacking a thread about a problem on Windows.

If on UNIX then you do need to edit the three files indicated.


Nope, they're the original poster and indicated Windoze.
by kcbland
Wed Apr 26, 2006 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command not working
Replies: 9
Views: 3044

Not to ask a stupid question, but are you sure you're telnet'd to the right server? If you are, then look to see if DS is installed. "ps -ef |grep dsrpc" should show the daemon running. If you don't see it, you're probably on the wrong server. If you do see it, then the .dshome file shows where the ...
by kcbland
Wed Apr 26, 2006 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Osh: What is it good for?
Replies: 9
Views: 3626

Ray, do you know if it is possible to hand-write an OSH script as if a GUI didn't exist? Existing Orchestrate customers should have some backwards compatibility as of release 7.5, I hope. :oops:
by kcbland
Wed Apr 26, 2006 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command not working
Replies: 9
Views: 3044

Because your profile does not include the DS Engine/bin directory in your PATH. Do "cat /.dshome" to see where the DS Engine resides.
by kcbland
Wed Apr 26, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append YYYYMM to filename
Replies: 7
Views: 1358

Write a DS Basic Routine to do what you need and call it as an after-job routine. Since Routines are difficult to develop (no Test button) I often use a Batch job to get the logic written and tested. Then, paste it into a Routine and adjust. Here's some code off the top of my head: InputArg is the t...
by kcbland
Wed Apr 26, 2006 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append YYYYMM to filename
Replies: 7
Views: 1358

You can always use an after-job/transformer routine build the custom filename and then all the DSExecute API to rename a file once built. You could consider the Macro which gives you a datetime and add that as part of the filename (not exactly what you asked), kind of like a parameter. You could wri...
by kcbland
Wed Apr 26, 2006 10:08 am
Forum: Site/Forum
Topic: Returning text error message
Replies: 2
Views: 2008

Welcome aboard. Please post in the correct forum. By doing so, you will be prompted to enter in information necessary for us to answer your questions. What version of DataStage? What release of DataStage? Are you attempting to use the dsjob command line program for starting jobs? Can you please post...
by kcbland
Wed Apr 26, 2006 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Oracle 10g
Replies: 9
Views: 1600

None, ODBC connections are managed thru the ODBC icon in Control Panel. OCI connections are managed via Oracle client installation.
by kcbland
Wed Apr 26, 2006 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Datastage log using routine
Replies: 4
Views: 1690

Jobs that don't have their auto-purge set have to be manually set, or you can use a utility program to mass-apply the purge settings such as one I supply on my website.
by kcbland
Wed Apr 26, 2006 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Oracle 10g
Replies: 9
Views: 1600

The "theory" is that all you need to do is "adjust" the DRS stage to Oracle via the drop down on the stage. But the "practice" is that you have to re-write any custom SQL into Oracle syntax. You'll also seriously consider re-importing all metadata using Oracle's plugin so that the correct data types...
by kcbland
Wed Apr 26, 2006 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help! -- i want data from 3 rows to transpose into 3 cols
Replies: 8
Views: 1833

Welcome aboard. You could pivot, or you could sort and use stage variables to collapse the multiple rows into their appropriate columns and pass thru an aggregator to output the last version of each row.
by kcbland
Wed Apr 26, 2006 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Oracle 10g
Replies: 9
Views: 1600

I believe you wlil use Oracle 9i client with the DRS stage to point to 8, 9, and 10 databases.
by kcbland
Wed Apr 26, 2006 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Failed for hash File
Replies: 8
Views: 1945

You can not insert NULL value into a key column of a Hashed File, this error is pointing to the 880th record, check whether this row from source is containing any NULL in the key column or not. Just a slight correction, it's not the 880th record, the message: Write failed for record id ' 880'". mea...
by kcbland
Tue Apr 25, 2006 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error reading unix fixed width file from remote server
Replies: 7
Views: 2161

Also, I would like to know how I can capture the last row of the fixed width file( the trailer line) in a seperate file Since you're reading a multi-record type file, your Sequential stage should read the entire row as a single column. Have a Transformer stage split the output into three links. Sen...
by kcbland
Tue Apr 25, 2006 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Datastage log using routine
Replies: 4
Views: 1690

Welcome Aboard! Use the Auto-purge capability in Director. There's no documented API for managing job logs.