Search found 6797 matches

by DSguru2B
Tue Dec 12, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: access same job
Replies: 10
Views: 1714

I dont think it will work. You will get an error, something like 'Job is not in the right state'. Thats why you have multi-instance capability in DataStage. To achieve exactly what you want.
by DSguru2B
Tue Dec 12, 2006 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can i Solve This
Replies: 1
Views: 761

I did a quick search and found this post. See vmcburney's reply at the end.
by DSguru2B
Tue Dec 12, 2006 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PIC S9(9)V99 to Decimal (11,2) Convertion problem
Replies: 6
Views: 3582

DataTypePicS9() expects values without a decimal as far as i remember. Havent used it for quite some time now. Try

Code: Select all

DataTypePicS9(EREPLACE(in.Col, ".", ""))/100

That should take care of it.
by DSguru2B
Tue Dec 12, 2006 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job returns different values for the same query
Replies: 13
Views: 3298

Create file AND 'clear' or create file and 'Delete file before create' option?
by DSguru2B
Tue Dec 12, 2006 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and Cobol Files, Microfocus, RM_Cobol and others
Replies: 2
Views: 1278

Welcome Aboard Is the file in binary format? I guess you can use the cff stage. Play with it and see if it works. Also, you will have to ftp your file onto the datastage server first before you can do anything, unless you have samba or some other third party tool installed that makes the two servers...
by DSguru2B
Tue Dec 12, 2006 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job returns different values for the same query
Replies: 13
Views: 3298

What options do you have specified within the hashed file stage properties. Is it 'create file' and 'delete file before create' option or just clear file?
by DSguru2B
Tue Dec 12, 2006 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODS Data wrongly Loaded
Replies: 5
Views: 1269

No. Unless you have desinged for a rollback.
by DSguru2B
Tue Dec 12, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job returns different values for the same query
Replies: 13
Views: 3298

What about the hashed file names? Make sure they are different for different hashed files and same for both building the hashed file and while reading it.
by DSguru2B
Tue Dec 12, 2006 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job returns different values for the same query
Replies: 13
Views: 3298

Re: Job returns different values for the same query

Not sure what made him think there was a 'static source' involved... I think you answered your own curiosity by saying: With the information you've posted I would guess your source changes over time, you'd have to convince us otherwise if that's not the case. Thats what i wanted to make sure. Maybe...
by DSguru2B
Tue Dec 12, 2006 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HowTo parametrize dataset?
Replies: 12
Views: 4233

I think a better and safer approach would be to load that particular column in a temp table and do a sql select with a sub select.

Code: Select all

SELECT column_list FROM table WHERE colname IN
  (SELECT colname from TempTable);
by DSguru2B
Tue Dec 12, 2006 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job returns different values for the same query
Replies: 13
Views: 3298

Your going to get a lot of remarks because of 'ASAP'. Try avoid using such words that demand for help rather than request. Now for your question, i have some followups, Do the sources change in between every runs, make sure your hashed file names are distinct. You have keys defined properly both dur...
by DSguru2B
Tue Dec 12, 2006 7:10 am
Forum: General
Topic: Db2 Bulk Load (TEMP_FILE) Error
Replies: 1
Views: 1848

Cant help you here. Wrong forum. Need to post in either server or parallel as we need to know what engine you sit on, what platform yada yada yada.
by DSguru2B
Tue Dec 12, 2006 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query Performance Issue
Replies: 2
Views: 671

How much time does it take for the same query to run outside datastage?
Does your target table have triggers on it? How many bytes in a row? Do you have any warnings in the datastage log?
by DSguru2B
Mon Dec 11, 2006 9:50 pm
Forum: General
Topic: abt sql overriding
Replies: 3
Views: 2442

Hehe. This is an interesting conversation (sense the sarcasm). Do a search in google on Informatica vs DataStage. You will find some helpful points. Such conversations lead no where. Try to avoid them.
by DSguru2B
Mon Dec 11, 2006 7:16 pm
Forum: General
Topic: regarding batch file
Replies: 11
Views: 4962

Start ---> Run ---->type cmd and hit enter ---> go to this desktop "C:\DOCUMENTS AND SETTINGS\ADMINISTRATOR\DESKTOP" and there type prjbatch.bat
There you go, thats how you execute a .bat job.