Search found 53125 matches

by ray.wurlod
Tue Mar 24, 2015 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCIDIC to ASCII using CFF having COMP3 filed
Replies: 7
Views: 3670

Obviously an ERROR occurred.

(The message tells you no more than that.)

Have a look at the imported table definition then compare that with what's actually in the file. Don't use DataStage for this latter activity.
by ray.wurlod
Tue Mar 24, 2015 4:16 pm
Forum: General
Topic: Unable to rename or delete jobs
Replies: 8
Views: 2057

Code: Select all

cd $ProjectDir
find \&PH\& -atime +7 -exec rm {}\;
by ray.wurlod
Mon Mar 23, 2015 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Printable characters loaded to Oracle from Sybase
Replies: 3
Views: 1319

I think you need to investigate the Sybase data a bit more thoroughly. DataStage can't "invent" data values. For example, are there any newline characters in these raw data? You could check using a Transformer stage. Incidentally, ^@ is a representation of ASCII NUL, often used as a termin...
by ray.wurlod
Mon Mar 23, 2015 1:49 pm
Forum: General
Topic: Unable to rename or delete jobs
Replies: 8
Views: 2057

How many jobs are there in the project? How long is it since you purged &PH&?
by ray.wurlod
Mon Mar 23, 2015 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special character issue while writing into sequential file
Replies: 2
Views: 3274

What encoding is used for your source data?
by ray.wurlod
Mon Mar 23, 2015 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data trunction when i am load into target as sql server
Replies: 9
Views: 2796

The float and dfloat data types are not guaranteed to store data to the final significant digits accurately. Research the IEEE specifications for storing these data types for the reasons why. I'd suggest you specify at least a scale value (ideally a precision value also), and perhaps treat the data ...
by ray.wurlod
Sun Mar 22, 2015 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in output file
Replies: 2
Views: 1085

It's impossible to tell from what you've provided. It might be a glitch in your I/O subsystem, maybe a badspot on the disk. Can you reproduce it? What precisely do you mean by "cut"?
by ray.wurlod
Sun Mar 22, 2015 9:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data trunction when i am load into target as sql server
Replies: 9
Views: 2796

Re: data trunction when i am load into target as sql server

My Source have sql server datatype has number,target have sql server datatype has sql server.When i am loading soure to tartget,data will be truncated. Ex:Source has 16.8 target loaded to 16.799992372605. i am not use any convertion function.Please let me know have idea in this. Can you please repo...
by ray.wurlod
Sun Mar 22, 2015 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete on table which has simultaneous inserts
Replies: 2
Views: 1538

Inserts and deletes should not be a problem if you are using row-level locking, since you can't delete a non-existent record and you can't insert an existing record.

If, however, you are using page or table level locking, then you may encounter lock contention.
by ray.wurlod
Fri Mar 20, 2015 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IXF File process into DB2
Replies: 2
Views: 885

Another possibility is to use CREATE INTO command to populate a work table from the IXF file, and then move the data from there to wherever you need it to be.
by ray.wurlod
Fri Mar 20, 2015 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IXF File process into DB2
Replies: 2
Views: 885

I wrote a routine to unpack IXF file formats very many years ago - doubt that I would be able to find it again but, as I recall, it was not difficult.
by ray.wurlod
Fri Mar 20, 2015 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read files with end-of-line character in its fields
Replies: 2
Views: 865

Use a server Sequential Fille stage in a server shared container. This stage type can handled line terminators in text fields.
by ray.wurlod
Thu Mar 19, 2015 1:18 am
Forum: General
Topic: Sequencer reading from just one folder
Replies: 14
Views: 4033

Then how about a unique UNC pathname?
by ray.wurlod
Wed Mar 18, 2015 8:52 pm
Forum: General
Topic: Sequencer reading from just one folder
Replies: 14
Views: 4033

Try changing your logged drive in the command.

Code: Select all

E: ; cd E:/DataSources/Export/Source/ | ls -l | wc -l | sed "s/ //g;"