Search found 53125 matches

by ray.wurlod
Thu Sep 21, 2006 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call the DS Routine in batch job?
Replies: 8
Views: 2238

A Batch in DataStage is job control code that is created using the Director client.
by ray.wurlod
Thu Sep 21, 2006 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the SIze of Flat file
Replies: 15
Views: 4239

Post your job design - with stage names - and your routine code, so that we don't have to keep guessing.
by ray.wurlod
Thu Sep 21, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning a value from file to environment variables
Replies: 5
Views: 1201

Was there something in my previous post that wasn't clear?
by ray.wurlod
Thu Sep 21, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating/updating an unique number for each call of the sequ
Replies: 13
Views: 4457

Yes.

Search to find examples of the requisite SQL statement.
by ray.wurlod
Thu Sep 21, 2006 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional updates on a table
Replies: 1
Views: 565

Re: Conditional updates on a table

I dont want to pull the records from the database and send the old value if there is NULL in the sequential file for that column. Tough. That's the only way you can do it. Consider methods, such as a "bucket file", that you can use to limit the number of rows that you need to bring in from the targ...
by ray.wurlod
Thu Sep 21, 2006 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of stages in a project
Replies: 7
Views: 1428

Kim, Thanks alot for providing the SQLs. Answering to Mike, it's a policy in my organization to collect number of lines of code used in all the projects. This is basically to measure how much coding has been done. Unfortunately (or fortunately ) DS doesn't have code in lines. So we thought of provi...
by ray.wurlod
Thu Sep 21, 2006 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Control Characters???
Replies: 4
Views: 980

You should be able to use the Convert() function. ^C is Char(3), ^H is Ctrl(8). Construct a list of control characters in a stage variable, and use Convert() to replace that with "".
by ray.wurlod
Thu Sep 21, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 5547

Yes. Same rules as SELECT in SQL.
by ray.wurlod
Thu Sep 21, 2006 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: buffering parameters
Replies: 3
Views: 1076

You have marked the job type as server. APT_BUFFERING_POLICY is not applicable to server jobs. What job type is it really? What value are you giving APT_BUFFERING_POLICY? There is a bug in some releases where the drop down list does not provide legal values (they are not correctly cased). The workar...
by ray.wurlod
Thu Sep 21, 2006 2:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Certification - Special Account Privileges
Replies: 3
Views: 1053

What Arnd advised is correct. As far as I am aware there are no plans to recognize certification by means of any reward on this site.
by ray.wurlod
Thu Sep 21, 2006 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting the parameter of a job sequence from a shell sript
Replies: 1
Views: 685

Stop thinking script, start thinking job sequence. A master control job sequence can be started from your script, and then manage the rest. Once you're in that environment you can much more easily use the DataStage API. DSGetJobInfo() can be used to obtain a list of the parameter names associated wi...
by ray.wurlod
Thu Sep 21, 2006 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 1946 Phantom 732 -- Meaning of Error Messages
Replies: 11
Views: 7605

Re: How to transfer (or re-post) a post in General to Server

How do I transfer (or re-post) a post in General to Server? You can not once it's been replied to. The moderator can (will?) relocate it. Or you can start a new thread in the appropriate forum and post a message here referring to the new thread as the correct location for responses. It's easier for...
by ray.wurlod
Thu Sep 21, 2006 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB Warning
Replies: 1
Views: 973

When you use a SUM function, DB2 automatically gives you a data type twice the size of the source column - in your case Decimal[31] instead of Decimal[15], so that no arithmetic overflow will occur. You have to specify this data type, or explicitly handle the data type conversion within your job des...
by ray.wurlod
Thu Sep 21, 2006 5:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning a value from file to environment variables
Replies: 5
Views: 1201

There's an internal inconsistency in what you wrote. I must assume that you want to override the value defined in the Administrator client with some other value obtained from a file. There is no problem assigning a new value to an environment variable; you can use the set command at operating system...
by ray.wurlod
Thu Sep 21, 2006 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to overwrite seqfile through basic command.
Replies: 3
Views: 1088

What about where the file does not exist, but is nonetheless opened for writing? What about where there exists a record level lock on the file taken by another process? As I said, there are very many possibilities, which is why the OpenSequentialFile routine exists.