Search found 6797 matches

by DSguru2B
Mon Feb 26, 2007 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find EOF using DataStage
Replies: 9
Views: 5525

Run the OS level command using DSExecute() in a routine. Reference that routine inside the transformer.
by DSguru2B
Mon Feb 26, 2007 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure and Environment
Replies: 11
Views: 2831

How are you parametrizing it. Make sure you surround it with hashes. Plus you need to give the instance name for Data Source.
by DSguru2B
Mon Feb 26, 2007 1:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure and Environment
Replies: 11
Views: 2831

Parametrize it. Pass it as a parameter to your stored procedure.
by DSguru2B
Mon Feb 26, 2007 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting the file Logically
Replies: 3
Views: 707

You can also use awk to append lines. Its better to do number of lines then number of bytes.
by DSguru2B
Mon Feb 26, 2007 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Populate XML data
Replies: 1
Views: 738

Care to share your 'work around' ???
by DSguru2B
Mon Feb 26, 2007 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC vs Plugins
Replies: 8
Views: 1646

ArndW wrote:Plugins tend to be faster with DataStage.

...due to the fact that it uses native drivers than generic ones.
by DSguru2B
Sun Feb 25, 2007 10:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transaction handling in Parallel jobs
Replies: 23
Views: 5379

How many open cursors are allowed by your id? There might be a limit to the number of open connections allowed by your id. Your DBA will be able to tell you how many connections are allowed by your id.
by DSguru2B
Sat Feb 24, 2007 9:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error in job
Replies: 14
Views: 7106

Uncheck the clear option, do create file and open the options box and check "Delete file before create". See if you see this error again.
by DSguru2B
Sat Feb 24, 2007 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to delete the indexes of a table using routine
Replies: 8
Views: 1947

Or you can do it in the OPEN command of a database stage. And how exactly are you going to do it in a routine? Are you planning do use a Basic Transformer?
by DSguru2B
Sat Feb 24, 2007 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File error
Replies: 6
Views: 2848

I wonder if this functionality is added in 8.0 :roll:
by DSguru2B
Sat Feb 24, 2007 8:01 am
Forum: General
Topic: Configuring DataStage for use by Multiple Users
Replies: 1
Views: 951

O they started emailing you, bad bad. I guess thats my fault as I gave away this secret of yours. But its good that you have it in one place here, that is accessible by all.
Thanks Craig. :)
by DSguru2B
Sat Feb 24, 2007 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why dont we have look-up stage in Datastage Server jobs
Replies: 10
Views: 4746

Two different animals. I like to put it that way :wink:
by DSguru2B
Fri Feb 23, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: last field null chk fails
Replies: 10
Views: 1540

I think the OP was referring to 100 points rather than currency. Or are you being sarcastic :roll:
by DSguru2B
Fri Feb 23, 2007 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage AND/OR Transformer Function
Replies: 29
Views: 4685

Thanks for confirming that Ray. I thought I was being hasty in concluding that its not possible as a one liner in a px transformer.
by DSguru2B
Fri Feb 23, 2007 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SEQUENCE ISSUE
Replies: 3
Views: 795

#!/usr/bin/ksh export FILE='file/to/check' export DIR='dir/to/check/' ls $DIR | wc -l | read val if [ -f $FILE && $val -eq 0 ] then exit 1 else exit 0 fi If you get 1, stop the job. You can also directly stop your job by replacing 'exit 1' with 'dsjob -stop' command to stop your job.