Search found 15603 matches

by ArndW
Fri Nov 20, 2009 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Collection Methods
Replies: 3
Views: 1485

How many nodes are in your APT_CONFIG file? Also, if you aren't changing the number of nodes between the transform and output dataset, no collection will take place so the data will, of necessity, be in the same order each run.
by ArndW
Fri Nov 20, 2009 12:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seen this message: Unable to attach to the given directory
Replies: 8
Views: 4083

My post meant that the next prompt would have been the project, so any attach will be to the $DSHOME or master directory. Is this a mounted drive and do you have any sort of security installed in addition to the normal Windows mechanism?
by ArndW
Fri Nov 20, 2009 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 11
Views: 4008

After you created the file, do a "VLIST DSG_BP DSR_LOADSTRING.B" and you'll get the pcode dump which will give you a correct line number as well. The codes can be consfusing, so just post 10 lines before and after.
by ArndW
Fri Nov 20, 2009 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files Deletion using datastage
Replies: 10
Views: 2425

Then get the list of files into your sequence, for instance through "ls -m", loop through all names, use a user-variables stage to extract the date portion from the file name, peform an ICONV() on it and get the delta to today's date. If more then 180 days then branch to an execute delete,...
by ArndW
Fri Nov 20, 2009 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trick for sequential stage for variable length
Replies: 2
Views: 1033

Can you just switch to the CFF stage? If you don't need the header then another option is to set "first line is column names" and DS will ignore it.
by ArndW
Fri Nov 20, 2009 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scheduling
Replies: 7
Views: 1433

I assume you mean through the Director interface. The answer is "yes", but you need to enter it 3 different times, once daily for 07:00, 13:00 and 18:00.
by ArndW
Fri Nov 20, 2009 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seen this message: Unable to attach to the given directory
Replies: 8
Views: 4083

If I recall correctly, the next question is for the project; so my guess is that it encounters that problem when it attaches to the DataStage home directory to try to read the UV.ACCOUNT file.

Can you login to DOS and do a "CD" there?
by ArndW
Fri Nov 20, 2009 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disaster recovery process
Replies: 6
Views: 3071

I'm not aware of a specific published IBM work on that topic.
by ArndW
Fri Nov 20, 2009 5:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Variables (Global Environment Variables)
Replies: 3
Views: 1263

The DSParams file is a text file.
by ArndW
Fri Nov 20, 2009 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files Deletion using datastage
Replies: 10
Views: 2425

I'm not sure if the syntax is correct, but "find /yourpath -name AREA-*.CSV -ctime +180" will give you a list of files. You can even expand that to "find /yourpath -name AREA-*.CSV -ctime +180 -exec rm {} \;"
by ArndW
Fri Nov 20, 2009 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Full hot backup sufficent to restore IS server ?
Replies: 8
Views: 2214

"Quite Close" means that you might get a problem if a job is open and being edited, or a job is running and writing hundreds of log messages a second. In both cases you might need to recompile or re-initialize the job upon restoring since the state at backup time was in flux. The restartab...
by ArndW
Fri Nov 20, 2009 5:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files Deletion using datastage
Replies: 10
Views: 2425

The question was more which date - the date in the name or the actual date-time-stamp of the file on disk?
by ArndW
Fri Nov 20, 2009 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 15
Views: 3826

I should amend my first note to say that variables starting with $ aren't allowed in BASIC. But looking at my generated code it seems that you can use "($OracleUser)"
by ArndW
Fri Nov 20, 2009 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record on file DS_STAGETYPES can not be written
Replies: 20
Views: 8842

From the Admin or from a TCL shell what output do you get for "LIST DS_STAGETYPES WITH @ID = 'CallUTFStripC'"
by ArndW
Fri Nov 20, 2009 5:05 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Sequencer -- start Loop issue
Replies: 2
Views: 1752

Add a stage to call DSLogInfo() or DSLogWarn() and output your variable to see which value you are getting, there is probably a small logical error somewhere, the overall approach is correct.

p.s. You posted in "ProfileStage", not quite the appropriate forum.