Search found 53125 matches

by ray.wurlod
Fri Jan 28, 2005 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: csv File
Replies: 10
Views: 3224

If you saved as CSV why are you trying to open a TXT file? If you saved as CSV from Excel giving the name CORAM.TXT Excel would have created CORAM.TXT.CSV Error code 2 means "file not found". That means that CORAM.TXT is not in the directory. Look there to see whether CORAM.TXT.CSV or CORAM.CSV is t...
by ray.wurlod
Fri Jan 28, 2005 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: porting utilities
Replies: 4
Views: 2077

Even PeopleSoft were able to be convinced that it couldn't be automated. And they do have buckets of money they could have thrown at it.
by ray.wurlod
Fri Jan 28, 2005 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job layout tips
Replies: 2
Views: 1604

A quick thought, with no detailed thought. How about aligning the two Transfomer stages horizontally, with Collate_balancing_entries above and Collate_GL_entries below? You should be able to resize the link collectors horizontally too, so as to spread out the link labels. Put the hashed file stage b...
by ray.wurlod
Fri Jan 28, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sending Mail.....
Replies: 4
Views: 1617

The UNIX hostname can be used in the SMTP Mail server name on a UNIX machine - each UNIX machine (if so configured) can be its own SMTP mail server.
by ray.wurlod
Fri Jan 28, 2005 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge output, erroneous link name in error
Replies: 1
Views: 987

What I suspect is happening here is that, when the job has finished writing to the text file, it closes the input files; therefore when it tries to get more information to load into the hashed file, it finds the file closed. The design that uses a Transformer to split the single output from the Merg...
by ray.wurlod
Fri Jan 28, 2005 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in implementing server routine
Replies: 6
Views: 1277

To clarify, DataStage does not support routines with a variable number of arguments. Therefore, as others suggested, you can pass to (or from) any argument a delimited list. The routine (or caller) needs to parse the list. If the delimiter is a dynamic array delimiter character (for example, @FM) th...
by ray.wurlod
Fri Jan 28, 2005 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deadlock error
Replies: 6
Views: 6775

The error message, as you can see from its tags (in square brackets) is being generated within DB2. Talk with your DBA about possible causes of deadlocks and timeouts, such as other operations happening in the database. I was once badly bitten because overnight batch update processes were run, about...
by ray.wurlod
Fri Jan 28, 2005 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the best way to load Huge Volume of History data?
Replies: 3
Views: 1697

I just wanted to check that the OP was across this! :wink:
by ray.wurlod
Fri Jan 28, 2005 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What needs to be configured for SendMail activity
Replies: 3
Views: 1212

I've found that it's OK to put the server's host name into the SMTP Mail server name field in the Notification Activity.
by ray.wurlod
Fri Jan 28, 2005 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Command Interface
Replies: 7
Views: 4298

A slightly better library is here (these cover the most recent UniVerse version on which DataStage was built). Note that there are some commands that are explicitly blocked in the Administrator client's command window. These include: LOGTO (don't know why - this was not blocked in 4.2) HELP (because...
by ray.wurlod
Fri Jan 28, 2005 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job parameter error
Replies: 9
Views: 3672

Silence on the forum usually means one of three things. (1) no-one knows the answer (2) someone is thinking about the answer but hasn't got there yet (3) someone who knows the answer has not logged in again yet This forum is NOT a support organization. If you want support, go to your support provide...
by ray.wurlod
Fri Jan 28, 2005 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the best way to load Huge Volume of History data?
Replies: 3
Views: 1697

I'd opt for a solution that prepared data files for SQL*Loader, then use that actually to load the Oracle tables. What volume of data do you consider "huge"? I note that you are claiming to be running parallel jobs on Windows. Is this really the case? Finally, please don't post the same question mor...
by ray.wurlod
Fri Jan 28, 2005 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in implementing server routine
Replies: 6
Views: 1277

Hashed file lookups are by primary key. Primary keys can not be null (by definition). Likewise the primary keys in your tables can not be null. Therefore how are you getting nulls? You load the key value from your table into a hashed file. You perform a lookup against the key. It is either found (an...
by ray.wurlod
Thu Jan 27, 2005 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to prevent skip in oracle sequence in PX Job?
Replies: 1
Views: 2285

Given that you are only using the NEXTVAL property of the sequence within the SQL there is no reason to believe it's anything within DataStage. Could any other Oracle user - even you - be doing SELECT SEQ_ASYSCORPSK.NEXTVAL FROM DUAL; to check what is happening? This also increments the sequence. If...
by ray.wurlod
Thu Jan 27, 2005 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob Win batch file
Replies: 11
Views: 5197

You might be inspired by a BAT file for finding the DS Engine directory on Windows. 8)