Search found 6797 matches

by DSguru2B
Wed Mar 07, 2007 4:16 pm
Forum: General
Topic: How do I get 'special access' into Looking for Talent forum
Replies: 5
Views: 1601

I like the yelling :wink:
by DSguru2B
Wed Mar 07, 2007 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Attach DSJ.JOBPID during job
Replies: 17
Views: 4219

Which PID would you be interested in. The one that initiates your job? When you run a job, you will see several pid's for that one particular job.
by DSguru2B
Wed Mar 07, 2007 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call stored procedure repeatly
Replies: 11
Views: 2496

Welcome Aboard :)
So you have to fire a stored proc. for each row, ouch, thats nasty. If the Id's are running numbers, just get the max from table and start adding @INROWNUM for each row.
by DSguru2B
Wed Mar 07, 2007 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop last character in astring
Replies: 2
Views: 639

Code: Select all

LEFT(in.col, (LEN(in.col)-1)

And with your code, you need to provide LEN(in.col) - 1 for stage variable LEN1. It will work
by DSguru2B
Wed Mar 07, 2007 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL data type 'BIT' not supported
Replies: 11
Views: 3643

Also keep in mind that in server, there is no true datatype, everything is stored and processed as characters. Its the database that encounter problems. This is why an explicity conversion was required.
by DSguru2B
Wed Mar 07, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing particular warning message...
Replies: 3
Views: 751

Use a message handler to demote it as an informational message. I say fix your job. Tomorrow the same warning might become into a fatal error.
by DSguru2B
Wed Mar 07, 2007 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New features related to automatic error handling in Sequence
Replies: 4
Views: 967

Its the Release Notes. Go in there. On the left window pane you will find that "Whats New" option.
by DSguru2B
Wed Mar 07, 2007 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checking the Date Modified of a flat file
Replies: 8
Views: 2601

I meant the STATUS statement. Opsi daisy, grasshopper at its best huh !!! :roll:
by DSguru2B
Wed Mar 07, 2007 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subrecord to Varchar
Replies: 23
Views: 7262

You said pass a pointer not pass an array. There is a difference. Arrays are defined as 'char' which is present in your list. Anywho, try what I suggested and see if that works.
by DSguru2B
Wed Mar 07, 2007 11:55 am
Forum: General
Topic: Low performance in the access the Informix
Replies: 6
Views: 1866

chulett wrote:[/i] Load the keys from your source file into a work table and use that to constrain your build sql for the hashed file.

Ahh, now I see. I am going blind... :(
by DSguru2B
Wed Mar 07, 2007 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subrecord to Varchar
Replies: 23
Views: 7262

Ok now your more clear when you said pass arrays as argument. As a stand alone function you can pass arrays as arguments. Like void printArray(char myArr[], int size) I am not sure if you can do this inside datastage. Have you tried specifying char as your input and suffixing your argument w...
by DSguru2B
Wed Mar 07, 2007 11:48 am
Forum: General
Topic: Low performance in the access the Informix
Replies: 6
Views: 1866

Load your file into a temp table and do a sql join. See if that works out for you.
by DSguru2B
Wed Mar 07, 2007 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subrecord to Varchar
Replies: 23
Views: 7262

I am not able to get what do you mean by "eat a pointer". Will you be passing the string or the memory address of the string? You cannot do the latter, how will you get the memory address of the string inside datastage? Pass the values in as arguments. For example if I want to concatenate 3 fields, ...
by DSguru2B
Wed Mar 07, 2007 11:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchgeneral,orchsort,orchstats could not load Bad address
Replies: 20
Views: 8414

IBM should be able to tell you that. You should have asked em', "On what occurances can the osh file change"? Does your system admin have any clue?