Search found 5168 matches

by kumar_s
Thu Feb 15, 2007 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: random errors SIGSEGV, SIGKILL, SIGBUS
Replies: 17
Views: 5314

Just be aware that, the settings can be made project wide or in the job wise. If the variable is included in the job's Environmental variable and a new value is been set, it is limited to that job.
by kumar_s
Thu Feb 15, 2007 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deriving different Levels
Replies: 17
Views: 4705

Hi Havoc, The option that you found out is more simple. You can just group by based on Parent Dept Child Dept, and get the max(LEVEL) with order by max(LEVEL) during extraction. You can just concatenate subsequent row until you find a change in value using stage variable. Though the LEVEL is in reve...
by kumar_s
Thu Feb 15, 2007 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: random errors SIGSEGV, SIGKILL, SIGBUS
Replies: 17
Views: 5314

Is the data flow in jobs increased lately?
It might be due to JobMonitor in parallel jobs.
Try to change the time based monitoring to size based.
This is done by unsetting the APT_MONITOR_TIME environment
variable and setting the APT_MONITOR_SIZE variable to a suitable number,
e.g. 1000000.
by kumar_s
Thu Feb 15, 2007 3:52 am
Forum: General
Topic: Installing MCM
Replies: 20
Views: 6245

ArndW wrote:DS server, not the client.

Arnd, It should be Client's and not server's authentication, isn't?
by kumar_s
Wed Feb 14, 2007 2:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2264

In this case, you need to either Basic Transformer to call the BASIC routine, or need to compose a C Routine.
by kumar_s
Tue Feb 13, 2007 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using sequential files in parallel extender
Replies: 2
Views: 1077

I never did, but it should be doable. If you source is in sequential file, you have no other choice. If you have other options, you can try to convert it into lookup fileset. It again depends on the size of the file that you are going to use.
by kumar_s
Tue Feb 13, 2007 10:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2264

ray.wurlod wrote:How to do every second comma using tr command?

Yeah, I didn't noticed this.
You can use

Code: Select all

tr ',' '\n' < filename | paste -d',' - -
by kumar_s
Tue Feb 13, 2007 6:29 pm
Forum: General
Topic: datastage UNIX
Replies: 7
Views: 2678

narasimha wrote:How is SCD related to AWK :roll:

Narasimha, I guess you got the point. :wink: Because, I couldn't find any SCD in awk.
May be he is referring to sed :roll:
by kumar_s
Tue Feb 13, 2007 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bus Error 17738
Replies: 8
Views: 1740

Try the JobB with Dataset-->TX-->Dataset or DataSet--.TX-->Seq file.
I hope you wouldn't be getting this error. Focus on the Oracle Stage, if you are using any User defined SQL, which calls any oracle function, or any external SP. You can post the same here.
by kumar_s
Tue Feb 13, 2007 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2264

You can use translator from unix as well

Code: Select all

tr ',' '\n' < filename
by kumar_s
Tue Feb 13, 2007 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BiigInt
Replies: 5
Views: 1036

DUMP_SCORE might also help.
by kumar_s
Tue Feb 13, 2007 6:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filter commad error in datastage seq files
Replies: 3
Views: 2033

Check the Filter command from the command prompt, if it gives the output to the console.
by kumar_s
Tue Feb 13, 2007 6:07 pm
Forum: General
Topic: group and create sequence..is it possible in DataStage
Replies: 4
Views: 1593

What are the inputs?
How the field Indicator is decided upon? ie., how the cound 1,2,3 or 1,2 is decided?
Answer for this vary with respect to your reply.
by kumar_s
Tue Feb 13, 2007 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 2239

Hi Zac,

What is the derivation that used for that column. There may be a change were, Null might not be passed at all. Check if the value that you are referring as empty string might be a space. What is the Pad_Char property set?
by kumar_s
Tue Feb 13, 2007 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BiigInt
Replies: 5
Views: 1036

What is the job desing? What stages are involved in this?
Because BigInt is not prescribed for Target Teradata stage?