Search found 5168 matches

by kumar_s
Mon Sep 18, 2006 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate Transform registration
Replies: 2
Views: 800

Could you explain bit more on "securities loading"
by kumar_s
Mon Sep 18, 2006 2:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gunzip works but suddenly throws up an error.
Replies: 4
Views: 1009

Is the filename or the path been passed as a parameter? If so check if the value been passed correctly in the previous call if that been called by any master job.
by kumar_s
Mon Sep 18, 2006 2:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Joins to DataStage
Replies: 4
Views: 1272

Since its Server Edition, Merge stage can hold only 2 inputs at a strech. I would suggest, to divide this into several jobs. And write the output into a temporaty table as when required. If the temporary table was required to be lookup to the subsequent job, built Index on the lookup key after the l...
by kumar_s
Sun Sep 17, 2006 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing unchanged rows using CDC
Replies: 6
Views: 1436

only in that specific stage.
You cannot do it in ChangeCapture Stage alone. Try with Difference stage or Compare Stage or ChangeCapture coupled with ChangeApply stage.
by kumar_s
Sun Sep 17, 2006 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Errors
Replies: 7
Views: 4688

I guess, now you got different error than what you pasted above :roll:
by kumar_s
Sun Sep 17, 2006 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing/Writing Contents of a DataSet from a OS
Replies: 10
Views: 4647

Include an entry in dsenv which points to "..Ascential/DataStage/PXEngine"
by kumar_s
Sat Sep 16, 2006 6:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine commands
Replies: 4
Views: 1710

You can execute either in Adminstrator Command or in TCL prompt.
i.e., $DSHOME/bin/uv after sourcing dsenv will get you to TCL prompt.
by kumar_s
Sat Sep 16, 2006 6:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading and writing from the same file?
Replies: 13
Views: 4896

If you are ready to use Hahsed file, you can read the hashed file using Hashfile sage, and find the max, use transformer and file stage to replace with the value in the target hashed file. Since it has advantage of, being able to update and read simultenoulsy.
by kumar_s
Fri Sep 15, 2006 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing filesets
Replies: 2
Views: 1247

Data files of the Fileset are in ascii readable format. The aproach that you might have tried to read dataset, will try to convert the data in internal format of datastage into the readable ascii format.
The path and file name of the datafiles will be in the control file with .fs as the extension.
by kumar_s
Fri Sep 15, 2006 9:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the IN and NOTIN operators
Replies: 2
Views: 873

Better think about using lookup for this.
by kumar_s
Fri Sep 15, 2006 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture stage question
Replies: 2
Views: 2209

Change the ChangeCapture into Join-Transformer. :wink:
by kumar_s
Fri Sep 15, 2006 9:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of columns in Metadata
Replies: 1
Views: 680

Check the column defenition from 150 to 240 for any missing ',' or ')' or ';'
by kumar_s
Fri Sep 15, 2006 9:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing with max timestamp
Replies: 6
Views: 1910

What stopping you from using the Userdefined SQL query, and updating the Audit table after the job.
by kumar_s
Fri Sep 15, 2006 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading and writing from the same file?
Replies: 13
Views: 4896

It the updated/Inserted record would not required to be updated/refered 2nd time in the current run, then read one file and update another file with the same content, and copy the updated file to the original file after the job run.
by kumar_s
Fri Sep 15, 2006 8:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the Job ID
Replies: 4
Views: 1108

Maintaining a database will need to have manual intervention to maintain, whenever you add a new job. Else you need to have a regular job which keeps track of the new job. Just the query for the Job Number in DS_JOBS will the unique number at any time. (Unless you deleted the job and reimport the sa...