Search found 5168 matches

by kumar_s
Wed May 24, 2006 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: "dfloat" to result type decimal
Replies: 25
Views: 7776

Check with you odbc source whether it really dose not have any data in it.
If the issue is with metadata mismatch, you would get a error/warning logged in. Check it seperately in a new job, by diverting the odbc to a sequential file or dataset and make sure you get the expected output.
by kumar_s
Wed May 24, 2006 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running the job
Replies: 6
Views: 1459

performance stats in designer should give you more or less same as Director, thoug both may not be as accurate as the actuall data flow.
Pls explain the job design, and also make sure whether you job is still running or its just the status shown by the client windows.
by kumar_s
Wed May 24, 2006 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New to Datastage need docs
Replies: 3
Views: 865

While installing you client are you not prompted with
1. Install Server Software
2. Install Client Software
3. Intall Version Control
......
by kumar_s
Wed May 24, 2006 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDC with single stage
Replies: 19
Views: 4263

Change capture stage does an implict lookup/join and a change detection in it. If you are going with this stage, and if you are much concern to not to use lookup stage, you done with it.
by kumar_s
Wed May 24, 2006 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job in loop
Replies: 2
Views: 932

Connect back to server and stop it :wink:
There are several ways discussed, so a search. Advisable way is thorough Director client.
by kumar_s
Wed May 24, 2006 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i want to capture bad records
Replies: 6
Views: 1476

As mentioned, define what is 'bad record' in you case?
Is it alwasy 6th and 7th in order?
by kumar_s
Wed May 24, 2006 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: master sequencer
Replies: 8
Views: 1556

How do you want the 5 sequencers to be executed if 'main' should be executed after all the 5.
by kumar_s
Wed May 24, 2006 12:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: why the datastage may occur running 1 record / second
Replies: 8
Views: 2642

The 'abnormal condition' is again not particular to a database or datastage or to operating system, or to netwrok... If you assume it is database, yes you will get the log out from the job. If the database is full or transaction log is full, load to the database will be aborted and hence the job, an...
by kumar_s
Wed May 24, 2006 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete records
Replies: 1
Views: 676

Do a unload from the table. Do a chance detection. (It can be done by doing a lookup against the target with the input rows) Optionally you can maintain a flag for the exist records. Replace the Target with those rown with the Exst flag. Or you also a have 'Write Method' as Deleter Rows in the Oracl...
by kumar_s
Mon May 22, 2006 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduled job that has a TimeStamp as a parameter
Replies: 6
Views: 2382

What is the type of parameter in the job and Jobsequence for the timestamp? Is it string or date or time?
Just try to write the same to a sequential file.
by kumar_s
Mon May 22, 2006 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: "dfloat" to result type decimal
Replies: 25
Views: 7776

So I guess you have few many issue to lookup on. As observed by thompsonp, The metadata for an Oracle number or number 38 defaults to Decimal(38,10). might be a valid information. I am getting data from one of the JOIN sets but not from the other. You mean input dataset is not getting read? data loo...
by kumar_s
Mon May 22, 2006 11:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Cleanup
Replies: 1
Views: 717

Discussed Several times. The response from my support call to Ascential is that there are 3 manual methods to delete invocation entries from the Status View in Director: 1. Manual Delete 2. Clear Status File 3. Re Compile Do a search you can find some interesting routines developed by our website to...
by kumar_s
Mon May 22, 2006 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Server job variable value from sequence job
Replies: 7
Views: 1892

Iam not much clear with your requirment. Do you need to access the value of the variable (parameter) set in the job sequence and pass it to underlying job? Or do you need to access the value of the parameter set in the job to the job sequence which calls it? Or do you need to access a value of stage...
by kumar_s
Mon May 22, 2006 11:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSRoutine
Replies: 8
Views: 1815

As mentioned use Start loop activity to pass the value of n to the funtion field("Hi,How,Do,You,Do",",",n) which lies in routine acitivity. The output of the routine activity for each loop can be passed to the subsequent job activity as a parameter.
by kumar_s
Mon May 22, 2006 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run job for each row in sequential file
Replies: 3
Views: 1021

You an use Looping activity in Job Sequence to have a loop for 10 times and pass the value of n to the job 1-10. So that you can retrive nth row for each iteration. Pass on this value either as UserStatus or write into an external file and read it and pass it as command output through Execute comman...