Search found 15603 matches

by ArndW
Mon Jan 23, 2006 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute SQL routine
Replies: 2
Views: 1465

No, there isn't. Each DB has a different method to create a database connection and to issue the DB command. The closest you can get to a universal interface is to use the ODBC stage for the SQL. There is no builtin DS routine to read/write to any database with the exception of the direct BASIC codi...
by ArndW
Mon Jan 23, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Random Link collector Error
Replies: 15
Views: 7729

And are you running your jobs as user "dsadmin" as well? Also try to measure your /tmp use during a run; 4% sounds like you have a lot of space left but if your /tmp only has a couple of Mb allocated it will fill up quickly and DataStage does try to clean up after itself. p.s. Please edit your topic...
by ArndW
Mon Jan 23, 2006 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version Control and UFS filesystem limitation
Replies: 9
Views: 3304

The conversion of one type of a hashed file to another is through the RESIZE command. It is important to ensure that the files are not in use when you do a RESIZE and the use of the "CONCURRENT" option is generally discouraged. If a file is going to be very small (such as the RT_LOGnnn or RT_STATUSn...
by ArndW
Mon Jan 23, 2006 5:44 am
Forum: Data Quality Best Practices
Topic: Transfering sources to a single file
Replies: 9
Views: 13992

Perhaps it might help to give an example of your requirements to illustrate your question. I am assuming that your question is more complicated, as you have self-evaluted yourself as an expert so it is unlikely that you are asking about the base DataStage transform functionality of mapping columns b...
by ArndW
Mon Jan 23, 2006 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Random Link collector Error
Replies: 15
Views: 7729

If you are running your jobs as user dsadm then the permissions are most likely not your problem. The most likely cause is what Ray has already mentioned - /tmp either running out of space or inodes. These temporary files are, I think, named pipes (use ls -al and see if the first character is a "p" ...
by ArndW
Mon Jan 23, 2006 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to stop a running job from administrator
Replies: 3
Views: 1082

The administrator was not designed as an interface to start and stop jobs. You could execute a SH -c "dsjob -stop <project> <job>" from the administrator or the dsjob portion straight from a UNIX shell. If you are attempting to stop a job's processes from running after a failed stop attempt through ...
by ArndW
Wed Jan 18, 2006 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hash file (create file) properties
Replies: 2
Views: 1098

When creating a new file the HFC is the only automated tool that will help you calculate these values. You can use the published information on Hashed files to manually calculate a ballpark figure. There are also the TCL commands HASH.AID and HASH.AID.DETAIL if I rememberc correctly - but they take ...
by ArndW
Tue Jan 17, 2006 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fixed width Binary File
Replies: 1
Views: 608

Fixed width is done by using CHAR and appropriate lengths, the contents of the data fields, at least when writing, is irrelevant. Numbers are written to sequential files as display formats, but if you wish the binary values to be stored then you can use the conversion for COMP-3.
by ArndW
Tue Jan 17, 2006 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Status Aborted/Restartable
Replies: 7
Views: 2706

The reset is done just before a job in a sequence is run; so it only works from sequences and the setting doesn't affect a run from the Director.
by ArndW
Mon Jan 16, 2006 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LOAD FROM STAGING TO REPOSITORY
Replies: 5
Views: 1649

Srikanth,

the correct way to answering this question would be to ask the customer how he/she wants the notification - most likely it will be be easy to make DataStage do this. The e-mail solution was menioned by the previous poster, but there are other methods as well.
by ArndW
Thu Jan 12, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phanto Error - Warning
Replies: 4
Views: 1175

Just what the message says - the program has referenced a variable before it was assigned a value. If you use an undeclared stage variable or similar in a derivation you will see this error. Check your transform variable usage - it may even show up in red in the designer.
by ArndW
Thu Jan 12, 2006 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a Unix script from another server ??
Replies: 4
Views: 977

Use a call to UNIX shell script and use rsh.
by ArndW
Thu Jan 12, 2006 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find table name in group of jobs in Datastage
Replies: 2
Views: 2043

Just as with any lookup, you will need to tell us what you are using as the key for your lookup, what criteria. You can use the DataStage command line and a SELECT clause on the DS_JOBS file but the statement depends upon what you want. For instance, you could do a "SELECT DS_JOBS WHERE CATEGORY = '...
by ArndW
Wed Jan 11, 2006 12:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing number of DB uploaded rows
Replies: 9
Views: 1257

Champa, first off, you need to insert a line at the top that reads "$INCLUDE DSINCLUDE JOBCONTROL.H". I'm surprised your routine even compiled... Please use the search functionality of this forum for either DSGetLinkInfo, DSGetJobInfo, or perhaps even better JOBCONTROL.H. This will show you some com...
by ArndW
Wed Jan 11, 2006 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing number of DB uploaded rows
Replies: 9
Views: 1257

Champa,

it makes no difference. Try it.