Search found 15603 matches

by ArndW
Wed Feb 08, 2006 12:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discrepancy In row counts
Replies: 11
Views: 2037

If you write a quickie job that does a lookup on your table for all the rows you can get a list of records that weren't inserted (the lookup will fail for those rows). Can you discern any pattern in those record? If you re-run the whole thing again to the same records not get inserted? What happens ...
by ArndW
Wed Feb 08, 2006 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discrepancy In row counts
Replies: 11
Views: 2037

sun rays : Thanks - I didn't even think of the duplicates; I just jumped to the assumption of rejected rows!
by ArndW
Wed Feb 08, 2006 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discrepancy In row counts
Replies: 11
Views: 2037

No need to guess - some of the rows are being rejected by the database. Depending upon the database and stage type you are using you have various ways of capturing these rejects. Please look up the appropriate stage type in your online documentation and read up on how to implement error handling and...
by ArndW
Wed Feb 08, 2006 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Audit DS jobs
Replies: 6
Views: 2519

The syntax is SQL, but there was a thread here earlier today which will answer your question.
by ArndW
Wed Feb 08, 2006 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Message in Reading Sequential file
Replies: 5
Views: 1388

Your file has 189 bytes in the first record, and your column metadata only account for 188 of those bytes. You are using a fixed width format, so the actual length must match that of your column definitions. What is are your column definitions? You could use an editor to manually check to see where ...
by ArndW
Wed Feb 08, 2006 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: command line execution
Replies: 13
Views: 4676

but the options are numeric i can't able to give uv there.the opitons start like 0,1,2 etc any more things do i need to do Thanks, RK I don't quite understand. If you telnet to the Windows server, it will prompt you for the name of the account to connect to. If you call up the uvsh or dssh program ...
by ArndW
Wed Feb 08, 2006 12:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export Jobs
Replies: 3
Views: 958

DataStage export itself unfortunately will not do this. I don't know if any of the other tools such as Compilewitch do this dependency checking, so you might still have a chance to get this automated. I usually end up exporting the jobs one-by-one to the same .dsx file; but it is tedious and error-p...
by ArndW
Wed Feb 08, 2006 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I write C++ API and call from within BASIC routine?
Replies: 1
Views: 466

Although the option of writing an external call is open to you (I think that you can use the IBM documents for the UCI for that), I think you'll be much happier of integrating a call to MyEnv = DSExecute('UNIX','env') and then parsing the returned values in that string. The line-feeds in the...
by ArndW
Wed Feb 08, 2006 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_SC213/jpfile: No such file or directory
Replies: 4
Views: 1298

The RT_SC file is filled at compile with the scripts that PX uses - does the error go away if you recompile the job?
by ArndW
Wed Feb 08, 2006 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to schedule a job on a particular day of the year
Replies: 3
Views: 1057

Since DataStage uses the host system's scheduler and you are on UNIX your system is most likely CRON and you can modify the entry in the crontab yourself; I couldn't find a specifi date option in the Director GUI to do so.
by ArndW
Wed Feb 08, 2006 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re-arranging source row into columns
Replies: 2
Views: 665

Sheshadri, is your rule to do this one character at a time? I can't think of a one-liner to do this, but a very simple user-written routine would do it. MyRoutine(ColA,ColB) EQUATE LF TO CHAR(10) EQUATE Separator TO ',' ColBLength = LEN(ColB) Ans = '' FOR Index = 1 TO ColBLength Ans ...
by ArndW
Wed Feb 08, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unwanted quotes added to parameter
Replies: 8
Views: 1952

ian, it has a default value without quotes, since that is the value it is using when you start your job manually. But when called through your scheduled process it is getting the extra double-quotes from somewhere; this is what you need to analyze. Most likely the double-quotes were added to the par...
by ArndW
Wed Feb 08, 2006 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unwanted quotes added to parameter
Replies: 8
Views: 1952

So the extra quotes are being added when you run through the scheduler... How is the scheduler getting/setting that value?
by ArndW
Wed Feb 08, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: usage analysis of hash file
Replies: 4
Views: 1033

The analysis tools require that a file has a local VOC entry. You can use the "SETFILE /path/to/your/file DUMMYFILENAME" and then a "ANALYZE.FILE DUMMYFILENAME" to do this.
by ArndW
Wed Feb 08, 2006 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Max number of Hashed files
Replies: 9
Views: 1374

Break it up into 4 or 5 lookups per transformer. This is assuming you have a multi-cpu system; otherwise none of this makes an effective difference.