Search found 6797 matches

by DSguru2B
Tue Dec 05, 2006 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reply = 9 error in Execute_Command stage
Replies: 17
Views: 4151

Yes, it means your execute command activity finished :wink:
Need more info on that. What command is it trying to execute. What surrounding error messages are you getting?
by DSguru2B
Tue Dec 05, 2006 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting numbers to decimal dot, and comma separated
Replies: 10
Views: 3477

gpbarsky, you need to bring your input into plain numeric format before using ArndW's code. So all together your expression will look like this

Code: Select all

Oconv(Iconv(in.Col,"MD2$"),'MD2["$",".",",",""]')
by DSguru2B
Tue Dec 05, 2006 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle restarting of subsequnces in Failure cases
Replies: 18
Views: 5367

If you are well versed in shell scripting you can write your own script. Restartablilty can be handled by reading the job names from a file and running them sequentially, once any job fails, copy the rest of the job names from the file to another file. Go investigate the error fix it. Next time you ...
by DSguru2B
Tue Dec 05, 2006 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert new rows without update
Replies: 6
Views: 1186

I think I know what kjaouhari meant.
That instead of going through the hashed file, is there any other way to find out inserts.
Right? :roll:
by DSguru2B
Tue Dec 05, 2006 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I load this ""DSU_BP.O/DSU.ExecuteSQL"
Replies: 10
Views: 3585

Need to look at your routine. From the looks of it, you did not let the compiler know that you will be using other user-defined routines within yours. You need a deffun prototype at the top of your routine.
by DSguru2B
Mon Dec 04, 2006 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with SEQ Execute Command to call for removing a file
Replies: 8
Views: 1018

What is the warning message that you are getting?
by DSguru2B
Mon Dec 04, 2006 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with SEQ Execute Command to call for removing a file
Replies: 8
Views: 1018

DSguru2B wrote:Secondly, is tmpLoc an environment variable?, if not and its just defined as a job parameter then get rid of $


You did not answer the second question i asked?
by DSguru2B
Mon Dec 04, 2006 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with SEQ Execute Command to call for removing a file
Replies: 8
Views: 1018

First of all, is your datastage server on unix or windows. your heading says its windows and your trying to run a unix command. Even the directory structure is of unix (the forward slash in #$tmpLoc#_data/LoadData.dat) Secondly, is tmpLoc an environment variable?, if not and its just defined as a jo...
by DSguru2B
Mon Dec 04, 2006 1:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Scheduling
Replies: 3
Views: 1200

How are you scheduling your jobs?
Are you using an entreprise scheduler like Control-M or Tivoli, or by cron tab ?
Regardless, it should not behave like this. Are you sure that your providing the correct scheduling requirements with proper scripting, if its involved.
by DSguru2B
Mon Dec 04, 2006 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding universe utility
Replies: 3
Views: 907

When inserting the universe table, did you identify the records with some kind of source code to identify its origin?
If not then i dont think you can. I might be wrong, but as far as i know, no way.
by DSguru2B
Mon Dec 04, 2006 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job sequencer
Replies: 8
Views: 1266

Check out Ray's reply in thispost.
by DSguru2B
Mon Dec 04, 2006 1:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with loading Timestamp filed into Oracle
Replies: 15
Views: 5931

Try loading to a sequential file first and see whether , really, you got the conversion successful. Most of the time in such situations, the blank space between the date part and time part of the timestamp is missing. Also, if you post the derivation, it would help us pin point the mistake, if there...
by DSguru2B
Mon Dec 04, 2006 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing non-matched records from reference file
Replies: 5
Views: 1072

You must be derive the rejected columns from the source and not the hashed file. I bet you are deriving it from the hashed file. The lookup failed and hence the values will be NULL. Makes sense?
by DSguru2B
Mon Dec 04, 2006 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link open processing error
Replies: 5
Views: 1435

Do an exact search on "Error occurred during link open processing". It reveals a few posts. See if they help.
by DSguru2B
Mon Dec 04, 2006 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while populating date value from seq file to oracle
Replies: 8
Views: 1770

Excuse my ignorance, but doesnt Oracle take in the timestamp as
YYYY-MM-DD ?