Search found 9 matches

by harsh_cs31
Tue Sep 29, 2009 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tsort merger aborting: Scratch space full
Replies: 1
Views: 3672

Tsort merger aborting: Scratch space full

Hi, I have around 800,000 records in a table and I do some transformations on these and then putting the columns into another table. During this if I run the job it gives me an error saying:Fatal Error: Tsort merger aborting: Scratch space full AND Fatal Error: Pipe read failed: short read Also if I...
by harsh_cs31
Thu Sep 17, 2009 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constraint in Transformer not working Please help!!
Replies: 5
Views: 2810

hey, Thanks for the replies, using TRIM worked for me though I still dont understand why a varchar 8 type needed it in my case.

Anyways, thanks a lot!
by harsh_cs31
Thu Sep 17, 2009 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constraint in Transformer not working Please help!!
Replies: 5
Views: 2810

it is a varchar(8) type field and also the query:
select count(1) from myTable where String_Column='A'
is working fine so I dont think this is the issue.
by harsh_cs31
Thu Sep 17, 2009 10:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constraint in Transformer not working Please help!!
Replies: 5
Views: 2810

Constraint in Transformer not working Please help!!

I have an ODBC source through which I put the records into a transformer. There are two outputs to the transformer. In one constraint I put String_column = "A" and in the other String_Column <> "A". The above does not seem to work. When I just put one output and say String_Column...
by harsh_cs31
Fri Sep 04, 2009 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the maximum length of varchar allowed
Replies: 4
Views: 10755

Iam using the SQL Server 2005 as the DB and Datastage 8.1 Parallel Version.
It is giving me an error datatype not supported because of the lenght of these three columns.

When trying to load using ODBC, datastage is not able to do so.
by harsh_cs31
Fri Sep 04, 2009 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the maximum length of varchar allowed
Replies: 4
Views: 10755

What is the maximum length of varchar allowed

Hi,

Iam using varchar(max), varchar(4000) and varchar(5000) in the ODBC Source.
I think such large types are not allowed.
Can sombody tell me what is the max type I can use for datastage.

Thanks!
by harsh_cs31
Sun Jul 19, 2009 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning recordset using a Stored Procedure
Replies: 4
Views: 1692

We can use the SP stage

We can use the SP stage in the Parallel job, but this will be a source, we cannot use this in between.
Using this stage we can return the dataset.
Hope it helps
by harsh_cs31
Sun Jul 19, 2009 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing inputs to a SP Stage from another stage
Replies: 4
Views: 2163

Passing inputs to a SP Stage from another stage

Hey, I'm working on huge sets of data and to load the entire table from the source does not makes sense. I can write a query to get the required records only but I want to use as little SQL as I can. I want to write a sp that will have a certain input param which can be passed by say, an ODBC stage....