Search found 166 matches

by thumsup9
Mon Sep 18, 2006 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: USER DEFINED SQL FILE WITH DRS STAGE
Replies: 28
Views: 14815

For using User Defined SQL file you will have to provide its path. Also, whats the complexity of your SQL and how many lines of code is it?
by thumsup9
Mon Sep 18, 2006 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Flag
Replies: 4
Views: 2055

Put a constriant that will Update the Target record only if the Flag is NULL or may be Flag <>'Y'.
by thumsup9
Mon Sep 18, 2006 2:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Do we have functions to check negative values in Datastage
Replies: 2
Views: 2018

Check for <0 for negative and >=0 for positive.
by thumsup9
Mon Sep 18, 2006 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion Logic
Replies: 2
Views: 929

I dont think unless indexing your key col there is any way to improve your time taken here. As such Delete takes more time as it writes to a log and also the number of rows are not few here..
by thumsup9
Mon Sep 18, 2006 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning sh: dbx: not found/Xml Tfm stage
Replies: 5
Views: 4180

What happens if you change the configuration file. Try running on a single node and see what happens.
by thumsup9
Fri Sep 15, 2006 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import Error while reading a tab delimited text file
Replies: 5
Views: 1944

Did you set the same on the source side too. It shows import error. Whats the NullFieldvalue you set on the source side..can you set this to \1 and check what happens...
by thumsup9
Fri Sep 15, 2006 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import Error while reading a tab delimited text file
Replies: 5
Views: 1944

In the format tab of the Oracle Stage and under Field Defaults property and set the Null field value property to the default you want. You have to handle nullable fields.
by thumsup9
Fri Sep 15, 2006 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing with max timestamp
Replies: 6
Views: 2738

thumsup9 wrote:select * from TABLE1
where timestampColumn > #PullDate#

and you can always pass the current date to your parameter.
parameter value should be currentdate-1
by thumsup9
Fri Sep 15, 2006 11:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing with max timestamp
Replies: 6
Views: 2738

select * from TABLE1
where timestampColumn > #PullDate#

and you can always pass the current date to your parameter.
by thumsup9
Thu Sep 14, 2006 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while converting date format
Replies: 4
Views: 1925

Kumar,

Your smileys hide the key information..
by thumsup9
Thu Sep 14, 2006 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null handling
Replies: 17
Views: 6946

Yes I meant the same..HTH
by thumsup9
Thu Sep 14, 2006 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null handling
Replies: 17
Views: 6946

Try this for char and varchar fields

If IsNull(Src.Col) then '' else Src.col Convert(char(000)," ",Src.Col))
by thumsup9
Wed Sep 13, 2006 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integrity constraint
Replies: 10
Views: 1720

You will find more on this in the forum. Your Parent table is missing some key vlaues and you may have to investigate why they are missing in there.

viewtopic.php?t=93704&highlight=parent+key+not+found
by thumsup9
Tue Sep 12, 2006 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 EE Stage. Error bind file name is not valid
Replies: 5
Views: 2951

DB2 EE works on partitioned database, is the databse partitioned.Check with your DBA also.
by thumsup9
Tue Sep 12, 2006 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connection Issue
Replies: 4
Views: 1568

Whats happens when you are connecting to DB2. Can you post the error message you are getting. You should have your DSN specified in
.odbc.ini file & ucodbc.config file.