Search found 15603 matches

by ArndW
Thu Apr 01, 2010 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projects are not visible through dsjob -lprojects
Replies: 20
Views: 6912

Ok, that number corresponds to a well-filled project. Perhaps the UV_SCHEMA entry is corrupted:

Code: Select all

{procedure as before to get into the UVSH}
LIST UV_SCHEMA
QUIT
by ArndW
Thu Apr 01, 2010 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Round Robin collection
Replies: 5
Views: 1761

I think the issue is that the funnel stage doesn't have round-robin collection, so one needs to perform that ordering oneself, thus my recommendation to compute the order algorithmically in the job.
by ArndW
Thu Apr 01, 2010 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projects are not visible through dsjob -lprojects
Replies: 20
Views: 6912

Ok, the next step:

Code: Select all

cd $DSHOME
. ./dsenv
bin/dshh
LOGTO dssdev
COUNT VOC
QUIT
This is to see if the VOC file of that project contains data.
by ArndW
Thu Apr 01, 2010 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SAS stage
Replies: 3
Views: 1984

The SAS plugin is available in DataStage and QualityStage 8.x releases in Parallel jobs only.
by ArndW
Thu Apr 01, 2010 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change in paramter set not refelecting in the job.
Replies: 3
Views: 1207

You can't avoid that, the default values of a set are compiled into the job. Or go the route of using "$PROJDEF" for all parameter set default values, in which case you wouldn't need to recompile.
by ArndW
Thu Apr 01, 2010 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading issue while running through sequence
Replies: 1
Views: 647

Various methods exist, here are some, in no particular order - make the whole job one transaction; either everything or nothing gets loaded - as part of the load/write to the database you add a field with date/time of load or a unique identifier, upon re-run read the DB and ignore any with that iden...
by ArndW
Thu Apr 01, 2010 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Derivations
Replies: 2
Views: 1860

No, there is no command that will let you do this. Your best bet is to take a .dsx or .xml export and process that. What do you mean by "get the derivation part in one go"?
by ArndW
Thu Apr 01, 2010 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Dsx file Error
Replies: 3
Views: 1138

Not all lines will have 2 columns. You need to declare just one column per line, then parse the contents in your job.
by ArndW
Wed Mar 31, 2010 10:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projects are not visible through dsjob -lprojects
Replies: 20
Views: 6912

swarnkar wrote:bash-3.00$ ./dsenv
is wrong, execute ". ./dsenv" the leading ". " is very important.
by ArndW
Wed Mar 31, 2010 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup on column with variable number of strings
Replies: 32
Views: 5965

"Pathed" filenames use OPENPATH while VOC filenames use OPEN. Which is being used in your routine?
by ArndW
Wed Mar 31, 2010 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projects are not visible through dsjob -lprojects
Replies: 20
Views: 6912

The assumption was that you had already run ". ./dsenv" after the "cd $DSHOME", since this is the prerequisite for all DataStage shell commands. Please do so and re-run the commands.
by ArndW
Wed Mar 31, 2010 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Intermitent Error
Replies: 2
Views: 1734

lol, I had to look it up the first time I saw it used (in the W3C standards) and like the term and use it wherever I can; which is probably why I never make it past the first date...
by ArndW
Wed Mar 31, 2010 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cleaning special characaters in char fields in db2
Replies: 11
Views: 3984

That was an interesting post, donny. You managed to answer some questions that weren't asked but avoided answering any of the questions that were... :roll:
by ArndW
Wed Mar 31, 2010 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Round Robin collection
Replies: 5
Views: 1761

First of all, you need to constrain your run to 1 node. Then add a column to all three streams, using the algorithm "@INROWNUM*3+{n}" where {n} has a different value in each stream, 0, 1 or 2. Then use a sort funnel to get your ordering.
by ArndW
Wed Mar 31, 2010 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cleaning special characaters in char fields in db2
Replies: 11
Views: 3984

Also define your NLS settings for DB2 and DataStage and what you consider a cleanup to be (removing them, mapping them to other characters, etc.).