Search found 6797 matches

by DSguru2B
Wed Dec 13, 2006 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ Module
Replies: 3
Views: 1116

Do an exact search on 'px routines'. One example is this
by DSguru2B
Wed Dec 13, 2006 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 Bulk Load (TEMP_FILE) Error
Replies: 9
Views: 9233

The news channel caught my attention while i was typing :roll:
by DSguru2B
Wed Dec 13, 2006 7:02 am
Forum: General
Topic: What is the best way to truncate source table.
Replies: 5
Views: 2223

Modularization, Restartability.
by DSguru2B
Wed Dec 13, 2006 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to trigger Connect direct using Datastage.
Replies: 1
Views: 1460

Usually companies which use CD as a source of transfering files, have a standard script in place. Get in touch with the connect direct folks to help you get a standard script. Execute, test it from command line. You can then fire that script from DSExecute() or before/after job/stage subroutine (Exe...
by DSguru2B
Wed Dec 13, 2006 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is ipc stage
Replies: 1
Views: 756

Welcome Aboard :P
Search for the keywords 'IPC stage'. You will find dozens of posts. Go through them and you will have a very good idea of what that stage is.
by DSguru2B
Wed Dec 13, 2006 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datetime field overflow error
Replies: 17
Views: 11614

use TimeStampToString(DSJOBTIMESTAMP,"%yyyy-%mm-%dd %hh:%nn:%ss") in the transformer, that would help Thats a px function and of no use in a server job. prmuttireddy, how did you change the date field to timestamp. Changing just in DataStage is not enough. YOu have to change it in the database tabl...
by DSguru2B
Tue Dec 12, 2006 10:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 Bulk Load (TEMP_FILE) Error
Replies: 9
Views: 9233

Ray is right. It surely is permissions. Check out this on IBM's help.Scroll down untill you see explanation for SQL3508N.
by DSguru2B
Tue Dec 12, 2006 10:31 pm
Forum: General
Topic: What is the best way to truncate source table.
Replies: 5
Views: 2223

Have a second job that does the truncate. Or you can have a small stored procedure and call that stored procedure in the second job. Keep them seperate.
by DSguru2B
Tue Dec 12, 2006 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of rows in a data set
Replies: 23
Views: 5240

It will only be for your id for that particular terminal only. Do this

Code: Select all

cd $DSHOME 
. ./dsenv
by DSguru2B
Tue Dec 12, 2006 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass a value in parameter for the next job
Replies: 17
Views: 4642

You love doing that, dont you Ray :wink: ?
by DSguru2B
Tue Dec 12, 2006 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to count the number of delimiters in a reord
Replies: 14
Views: 9213

A pipe delimited would automatically mean that its not fixed. A fixed width file has no delimiter, just that every column's length is defined and the values are picked based upon that column length.
by DSguru2B
Tue Dec 12, 2006 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of rows in a data set
Replies: 23
Views: 5240

By the command dsrecords mydataset.ds. For more info check this post.
by DSguru2B
Tue Dec 12, 2006 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to count the number of delimiters in a reord
Replies: 14
Views: 9213

Yes. Count and DCOUNT both will work. You need to read your row as a single column and something like DCOUNT(in.Link,"|") = x in contraint where x is the number of pipes your looking for.
by DSguru2B
Tue Dec 12, 2006 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debugging in Ascential
Replies: 8
Views: 2026

Yes this website. :P
Jokes apart, what exact message were you referring too. I doubt any error message that the DSEngine can produce, has not been discussed here. Usually there are surrounding warning messages that aid in understanding the fatal message.
by DSguru2B
Tue Dec 12, 2006 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Limits on jobs
Replies: 21
Views: 4794

Yes Mr. Whale it will. Any stage thats fired in parallel will be waited upon to finish before moving forward :wink:
Go ahead, test it for yourself.