Search found 53125 matches

by ray.wurlod
Mon Jul 12, 2004 7:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo
Replies: 1
Views: 870

-1 is the error code DSJE.BADHANDLE

It means that the first argument you've given to DSGetLinkInfo is not a valid job handle.
The only means for generating a valid job handle are:
    using the DSJ.ME constant
    using the DSAttachJob function
by ray.wurlod
Mon Jul 12, 2004 7:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: still running job and sequence after reboot server
Replies: 1
Views: 1390

"Running" is the most recent entry the job was able to make in its status file (which is interrogated by Director's status view). You can reset that status by clearing the status file or by recompiling the job. Clearing the status file should be a method of last resort, which is why it asks "are you...
by ray.wurlod
Sun Jul 11, 2004 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Restart from the abort point
Replies: 4
Views: 2274

I'd be more concerned with finding out why it aborts, and correcting that situation. How do you know that all of the 250M records were successfully loaded? That said, the approach is basically to determine the row counts - there are many ways to do that - and to use the appropriate one as the start ...
by ray.wurlod
Sat Jul 10, 2004 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting and Updating rows
Replies: 1
Views: 881

Welcome aboard! :D Your question falls into the categories of "changed data capture" and "slowly changing dimensions", which are often asked here, so a search of the forum for these terms would help you. There are several techniques for both, depending mainly on whether you have your data records al...
by ray.wurlod
Sat Jul 10, 2004 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get the month difference between two dates
Replies: 3
Views: 4922

This post has a solution, with code, for the difference in completed months. Another post, with some SQL, is here.
by ray.wurlod
Fri Jul 09, 2004 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the "LIKE" operator in DS Routine
Replies: 3
Views: 1335

The operator in DataStage BASIC is MATCHES rather than LIKE , and it uses a more flexible pattern-matching capability. In your case, all you need is the wild-card pattern element, which is either "..." or "0X". InLink.ColumnName MATCHES "...TBA..." or, for case-insensitive matching UpCase&...
by ray.wurlod
Fri Jul 09, 2004 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Upgrade
Replies: 5
Views: 2153

I've just done one from Solaris to AIX, DS 5.2 to 7.0. The main obstacle was changing default values for pathname parameters; which I solved by creating a DataStage routine that post-processes a DSX-format export file.
by ray.wurlod
Fri Jul 09, 2004 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage version 7 over version 5.2.1
Replies: 6
Views: 1496

We ran into one issue. The HashedFile stage can no longer successfully perform a reference lookup in the following circumstances: the hashed file has more than one key column the value of each key column is "" even though this is a valid key, and works OK at 5.2. This was reported (with a reproducib...
by ray.wurlod
Fri Jul 09, 2004 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Typical Problem with Extraction
Replies: 2
Views: 1220

Can you not set the metadata definition to VarChar with a precision of 32000?
by ray.wurlod
Fri Jul 09, 2004 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP stage to retrieve the lastest file
Replies: 2
Views: 1009

You could, in the FTP stage, use a "before" command uniquely to identify the latest file and give it a fixed name that FTP could use. Something like:

Code: Select all

rm -rf mytempdir && mkdir mytempdir && cp `ls -t | head -1` mytempdir/xyz && cd mytempdir
then use FTP to get the xyz file
by ray.wurlod
Fri Jul 09, 2004 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete jobs
Replies: 13
Views: 3973

I was drafted (and initially unhappy about it) during the VietNam conflict. Does that help?
by ray.wurlod
Fri Jul 09, 2004 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete jobs
Replies: 13
Views: 3973

Woody grew up in Okemah, OK where my dad grew up. "In them Oklahoma hills where I was born". You probably like Dylan, CSNY, Buffalo Springfield. How about Hank Williams? Now you're just jumping to conclusions. All I said is I could remember Woody Guthrie. While I do admire some of his work, my main...
by ray.wurlod
Thu Jul 08, 2004 10:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete jobs
Replies: 13
Views: 3973

Hi Kduke, I got the same issue. As you suggessted i had created RT_CONFIG file and can you pls let me know what entries need to be added in VOC file. Thanks & Regards Saravanan The whole point is that you do not need to create the RT_CONFIG file. There is no such file . Each job has a hashed file c...
by ray.wurlod
Thu Jul 08, 2004 10:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete jobs
Replies: 13
Views: 3973

Wandering WAY off topic!

kduke wrote:Arlo Guthrie? Are you a hippie? You aren't that old are you, Ray?

Man, I remember Woody Guthrie!
And Maynard G Krebs.
by ray.wurlod
Thu Jul 08, 2004 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any in built function compare the values in a col
Replies: 9
Views: 2992

SV1 detects whether a change has occurred.

SV2 remembers the value from the previous row processed (while SV1 is being evaluated).