Search found 452 matches

by vivekgadwal
Tue Oct 12, 2010 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CSV file with delimiter other than comma
Replies: 10
Views: 5890

First off, a csv is a "Comma separated values" file. On Unix, you can create files with any name (.csv or .out etc.). But, if you import that into Windows to view it, you cannot immediately open with Excel. You have to use a text editor. I cant get my input with Quotes, its coming from man...
by vivekgadwal
Tue Oct 12, 2010 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rounding Issue
Replies: 6
Views: 3032

In my experience with this I have learnt that there are many ways a rounding function can be implemented, like Accounting etc. DataStage does it this way. Other tools might use a different algorithm. ArndW is right, there is no bug with this.
by vivekgadwal
Fri Oct 08, 2010 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting job parameters
Replies: 4
Views: 2930

Forgot one point, since you are in version 8, you have parameter sets. They can be imported and exported.
by vivekgadwal
Fri Oct 08, 2010 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting job parameters
Replies: 4
Views: 2930

Not that I am aware of. If they are Environment variables, then you copy the DSParams file between projects.
by vivekgadwal
Tue Oct 05, 2010 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pin 1 not initialized
Replies: 5
Views: 5687

I get these errors when I do a "View Data" for my DB2 stage (API) whose NLS is set to "OFF". We did this because we were having "glibc" errors when the NLS is set to Project default. But, the jobs run fine though.
by vivekgadwal
Thu Sep 30, 2010 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer
Replies: 4
Views: 2981

Awesome...I did not notice that so far! By default it is enabled, so never even thought of playing with those. I guess this is what OP wants...
by vivekgadwal
Thu Sep 30, 2010 1:39 pm
Forum: General
Topic: .tot and .dbf Files
Replies: 3
Views: 1997

Can you read them using Sequential file stage? Try requesting for a sample and see if you can do so (I am talking about the .tot file, of course). You were already informed on what to do with .dbf file by Craig.
by vivekgadwal
Thu Sep 30, 2010 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer
Replies: 4
Views: 2981

IMHO, the problem that OP posted is not related to Performance Statistics. I am afraid there might be many possibilities on why this behavior is happening. You may have run out of memory by having too many windows open or there is a problem with the Designer client. If nothing works, a re-install of...
by vivekgadwal
Thu Sep 30, 2010 12:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential stage file view error.
Replies: 2
Views: 1617

The tool will display the behavior that you mentioned if you are dealing with Server jobs. In Parallel, it will produce this elegant "ERROR" kind of a message if you View the data. It should be fine while running a job with empty source/target files.
by vivekgadwal
Mon Sep 27, 2010 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion
Replies: 17
Views: 6150

Write a User-defined SQL query to do the Date masking.
by vivekgadwal
Mon Sep 27, 2010 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion
Replies: 17
Views: 6150

chulett wrote:... and then a TO_DATE() with a matching format mask in your target SQL. ...
...in your target SQL is what Craig meant.
by vivekgadwal
Mon Sep 27, 2010 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to run a job if job failed ofter loading some records
Replies: 5
Views: 5543

Re: how to run a job if job failed ofter loading some record

ds_dwh wrote: normally if job is aborted i didn't find any records in target (i mean record count is zero)
That is because you might have had the transaction limit set to '0'.
by vivekgadwal
Fri Sep 24, 2010 2:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run the job mutliple times untill the condition is met
Replies: 3
Views: 3569

If you want a DataStage solution, look into UserStatus here. The way you would do it is, you will need to have separate jobs to achieve what you want and these should be part of the sequence. The below steps will be part of a loop that would run based on the time interval that you give (look into 'S...
by vivekgadwal
Fri Sep 24, 2010 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading data from a PSV file
Replies: 2
Views: 1884

Re: Reading data from a PSV file

Sequential_File_38,0: Field "EntityID" has import error and no default value; data: <empty>, at offset: 9 Sequential_File_38,0: Field "FIRST_NAME" delimiter not seen, at offset: 55 These tell me that the Sequential file stage is not properly configured to read the data. Please c...
by vivekgadwal
Fri Sep 24, 2010 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create header and trailer record in output file
Replies: 4
Views: 3490

Row Gen --- XFM --- | File ----------------- Funnel (Sequence) ----Output | Row Gen --- XFM --- *Edited* Metadata for the 3 sources should be the same (1 field). So, read the entire row as one field from your source and do the concatenations the way you wish for the Header/Trailer in the Transforme...