Search found 6797 matches

by DSguru2B
Tue Jun 20, 2006 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error
Replies: 14
Views: 2126

Need to know your job design. What exactly are you doing?
by DSguru2B
Tue Jun 20, 2006 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -run cmd won't work some times
Replies: 12
Views: 3532

I would hate to break it to you but when you pass parameter values like the way you are doing, they should not have any spaces in them. Once upon a time i spent way to many hours trying to figure it out. Just for your own satisfaction, dont change anything in the script, just remove spaces from the ...
by DSguru2B
Tue Jun 20, 2006 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -run cmd won't work some times
Replies: 12
Views: 3532

Make sure they have been defined as "String" in the job properties.
I would need to take a look at your script, if you dont mind. There must be something you are doing there.
by DSguru2B
Tue Jun 20, 2006 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creteria for opting Hashed file
Replies: 9
Views: 2354

Why dont you actually run it and see how much time its taking. Maybe it wont take that much time. Also, build the hashed file with only the columns you require.
by DSguru2B
Tue Jun 20, 2006 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -run cmd won't work some times
Replies: 12
Views: 3532

I see you have param values with spaces in them. You need to enclose only the value in double quotes. That will work. Basically your command should look like this now.

Code: Select all

dsjob -run -jobstatus -param PARAM1="VALUE" -param PARAM2="VALUE" PROJECT1 JOB1
by DSguru2B
Tue Jun 20, 2006 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -run cmd won't work some times
Replies: 12
Views: 3532

Re: dsjob -run cmd won't work some times

arsheshadri wrote:Hi ,

dsjob -run -jobstatus -param 'PARAM1=VALUE' -param 'PARAM2=VALUE' PROJECT1 JOB1



Remove the quotes around 'PARAM1=VALUE'.
In other words, your dsjob command should now look like this

Code: Select all

dsjob -run -jobstatus -param PARAM1=VALUE -param PARAM2=VALUE PROJECT1 JOB1
by DSguru2B
Tue Jun 20, 2006 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creteria for opting Hashed file
Replies: 9
Views: 2354

In this case use date set that only has one key defined and use that as a hashed file and use the other dataset with two keys defined as the driver.
By reading through your other posts i believe you have a choice in which data set can to use for lookup. Hence, this is the only other way i see.
by DSguru2B
Tue Jun 20, 2006 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error loading
Replies: 1
Views: 951

Your error tells you what you want to know.
It tells you that TIMESTAMP is a key word and you are using it as a column name. Try to enclose it in double quotes. THat should work.
You can read post on this other website for reference.
by DSguru2B
Tue Jun 20, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert and update
Replies: 10
Views: 2253

Re: Insert and update

rafidwh wrote:I gave the condition in the constraint like IsNull(keycolumn) for insert and NotIsnull for update.

The keycolumn must be from the reference link and not from the source or else it will always go down the path of Update.
by DSguru2B
Tue Jun 20, 2006 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 UDB Bulk Stage - Performance Issue
Replies: 57
Views: 14878

SQL3039W The memory available to LOAD for DATA BUFFER prohibits full LOAD parallelism. Load parallelism of "1" will be used Do a google on the SQL code. Heres what ive found on IBM's site Ignore this message, and the LOAD will complete normally using the smaller value for LOAD parallelism. However,...
by DSguru2B
Tue Jun 20, 2006 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't see locks in DS.TOOLS
Replies: 10
Views: 2351

I use the DS.Tools option to unlock the processes. These are the steps I follow: 1. List.readu -- give you the Processes with usernames and jobs that are used or locked. 2. Note the PID number for the job to unlock. 3. DS.Tools 4. Option 7 5. Option 4 6. Enter the PID. 7. enter Y to confirm. If by c...
by DSguru2B
Tue Jun 20, 2006 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Suppress status code of dsjob command
Replies: 8
Views: 4070

dont include the -jobstatus option along with the -run. This way you will only get either a 1 or a 0. Then you can use either Ray or Ken's suggestion to obtain your goal.
by DSguru2B
Tue Jun 20, 2006 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: literal doesnot match format string
Replies: 12
Views: 2140

rafidwh, as requested, post your target sql to verify the date format.
by DSguru2B
Tue Jun 20, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: literal doesnot match format string
Replies: 12
Views: 2140

if thats the case, apply an oconv to your output. You should be fine then.
by DSguru2B
Mon Jun 19, 2006 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to supress leading Zeros
Replies: 7
Views: 2584

Thanks Ken for the input, completely overlooked that :roll: