Search found 89 matches

by girija
Wed Jul 23, 2008 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I achive this?
Replies: 3
Views: 1511

Use change capture stage and get the new, deleted , changed and copied ( same info) member and based on the change code do insert delete/update.
by girija
Mon Jul 21, 2008 12:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key generator using DB SEQ option
Replies: 6
Views: 5131

I hope you are using surrogate key generator 'using oracle sequence' for
a specific reason. But if you are simply insert into your target table, use <sequence name>.nextval in your insert statement.
by girija
Mon Jul 21, 2008 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Describe failed because of a missing column, Oracle stage
Replies: 5
Views: 6247

I think it occurs due to field name mismatch. Go to the datastage manager. Go to tools---> dataset management.
open the dataset and click on show schema...
Copy the schema definition and search for FILE_CODE.
If it not there change the output column name in your transformer as FILE_CODE.
by girija
Mon Jul 14, 2008 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sql load per node instead of all nodes at once
Replies: 4
Views: 2121

sql load per node instead of all nodes at once

Hi, Its little bit confusing. What are you doing? Are you writing data into Oracle table from Dataset? If you writing data into oracle table and before that truncating the target table you need to synchronize your process, means truncate first and until and unless truncation finished no data will be...
by girija
Mon Jul 14, 2008 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scratch folder filling very fast for a particular table
Replies: 10
Views: 3043

If you using join stage then the procees will create the tsort file. First of all if you need all the column from your source then use read otherwise better to select the fields. Second your lookup table is very very small and the memory usage and performance of lookup stage doesn't depend on the so...
by girija
Mon Jul 14, 2008 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Warnings while populating sequential files
Replies: 15
Views: 6925

Re: Remove Warnings while populating sequential files

1. Open the prooerties tab of the seq file
2. Go to Input --> columns tab
3. You see the field # assigned for each field
4. Double click on the field # and set the null value


I hope it will resolve the issue.
by girija
Mon Jun 02, 2008 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Losing Decimal Values
Replies: 2
Views: 1686

Use AsDouble or AsFloat and divide by 100.0. C/C++ syntex.
by girija
Fri Mar 28, 2008 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with double quotes
Replies: 2
Views: 1688

samba wrote:search for 'double quotes' in dsxchange.

Thanks
samba
So your field separator is , (comma) and data contains " (quote).
Try this ....
Set field separator as ,
and quote as none in the properties tab.
by girija
Fri Mar 28, 2008 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uuencode...
Replies: 4
Views: 1934

Re: uuencode...

vijayg wrote:
chulett wrote:What stage? The Execute Command stage in a Sequence job pops to mind as the easiest, but there are other ways. ...
Thanks for the reply. I am thinking of doing it from Transformer stage.

Vijay.
And you have to call it from Datastage Sequence.
by girija
Wed Mar 26, 2008 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Only inserts through Oracle Enterprise stage
Replies: 18
Views: 7537

Only insert

The user-defined SQL is loading data from DS job only. It just uses a Oracle sequence in it to generate a sequence number. Hope we can use the ODBC stage only if we have an ODBC connection. But we do not have a ODBC connection to the Oracle database. But, I think we could try using DRS stage. DRS s...
by girija
Thu Feb 28, 2008 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Release Scratch
Replies: 4
Views: 1840

Does Remove Duplicates use much scratch space? I would have thought when the data was already sorted it would only need a small amount of scratch space. The Sort stage wont remove the scratch files ... No. The sort using expected scratch space, but I need to know is there any way around in datastag...
by girija
Wed Feb 27, 2008 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Release Scratch
Replies: 4
Views: 1840

Release Scratch

Hi All, How do I release the scratch space used by datastage. For example I am using a remove duplicate stage to remove some duplicate row and for this I need to sort the input stream. When I am sorting the input stream, datastage use the scratch space for that ( 20 Million rows). But my requirement...
by girija
Tue May 09, 2006 12:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File formats
Replies: 12
Views: 3303

Hi trobinson,
I never faced this kind of problem and I can't reproduce ( simulate this error). It would be great if you post create script of this table, that might help us to look into details of this problem.

Thanks
Girija
by girija
Fri Mar 24, 2006 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any bug in Join stage
Replies: 8
Views: 2808

No there is no bug in Join stage. What I think that you must have some duplicate key in the right table. Please check it and I hope you get the answer.