Search found 5168 matches

by kumar_s
Wed Sep 20, 2006 6:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Date
Replies: 3
Views: 1056

Additional stages will consume additional resource.
by kumar_s
Wed Sep 20, 2006 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Do look up for the first incoming row
Replies: 2
Views: 721

If your concern is about input, its better to have two streme, one for first row with lookup and another for rest of the rows for clarity purpose. You can also build 'If then else' logic with INROWNUM=1 in the derivation part. Or you can had constraint inthe lookup.
by kumar_s
Wed Sep 20, 2006 6:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence generator
Replies: 10
Views: 3633

While inserting into the table, the value for the Sequence number column would be seq.nextval, where 'seq' is the sequence created using CREATE SEQUENCE statement.
by kumar_s
Tue Sep 19, 2006 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete orphan dataset
Replies: 6
Views: 3498

If the Descriptor file has been deleted using rm command, then you have no choice left out, other than deleting the data file using rm command. But as mentiond, you need to be carfull about the data file that do not belong to any other descripot file. Optionally, you can try to create another dummy ...
by kumar_s
Tue Sep 19, 2006 10:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date type cast
Replies: 12
Views: 7984

What are you expecting? What is not happening? what is the error you getting?
You will see the Double quotes only at the output/input file. If the quote character is given properly, you dont need to worry about it.
by kumar_s
Tue Sep 19, 2006 10:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1338

Untill you have the same set of columns been propagated from the source till target, RCP shouldnt make any difference.
by kumar_s
Tue Sep 19, 2006 7:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage hashed file detected
Replies: 12
Views: 5008

As suggested much early to check for disk space. Nice that you got your problem solved.:D
by kumar_s
Tue Sep 19, 2006 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to make insert or update when using OCI stage in intarge
Replies: 3
Views: 1182

If you are editing the exisitng column, you need to edit the existing user defiled code as well.
by kumar_s
Tue Sep 19, 2006 7:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Source Qualifier?
Replies: 1
Views: 767

I guess, they are messing up with "Informatica" stages, and referring to the sparse lookup.
If the number of rows in the two sorce is not extremely huge, explain them that, lookup made through the hashed file is more effecient that an sparce lookup done over an indexed table.
by kumar_s
Tue Sep 19, 2006 7:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem With ExecCommand Activity
Replies: 4
Views: 1817

Read the parameter in the JobSequence that useses the CommandActivity by assigining the default value as $PROJDEF. And now you can pass the parameter to the commandActivity stage from the JobSequence.
by kumar_s
Tue Sep 19, 2006 7:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: paging file
Replies: 2
Views: 1151

It seems, sequential file cannot hold that huge numbe of records in the buffer.
Try to check the your project directory disk space, if it can hold the file with the same size of the input file.
by kumar_s
Tue Sep 19, 2006 7:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a user with permission DataStage Operator?
Replies: 7
Views: 1943

Protected project cannot be compiled by users other than dsadm. As Ray said, if a user is given access to compile, the user as full access to edit the code.
by kumar_s
Tue Sep 19, 2006 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conver columns to rows in oracle
Replies: 5
Views: 1292

If the number of records for each group will be only 3, then its possible by using mod function and some corelated subquery. But it is more simple to accomplish from datastage.
by kumar_s
Tue Sep 19, 2006 7:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format conversion: YYYY-MM-DD to YYYYMMDD
Replies: 3
Views: 4081

What is the output datatype. If it is char/varchar, juct Convert '-' to ''
by kumar_s
Tue Sep 19, 2006 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CURSOR SQLSERVER => DATASTAGE
Replies: 7
Views: 3700

Convert all the statement with in the cursor in the SQL into a single record set in Datastage, may be by using single or multiple jobs. User Transformer, for all you typecasing, case condition, If then else check... If it is PX job, leverage the filter, SWITCH for these purpose. Now cursor can be tr...