Search found 15603 matches

by ArndW
Mon Jul 02, 2007 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import - Excel CSV
Replies: 6
Views: 2033

Do you have the sequential stage setting "First Line Is Column Names" set to true in your job?
by ArndW
Mon Jul 02, 2007 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unknown errors from Dataset.
Replies: 3
Views: 824

For both the viewing and deletion I would try using the "orchadmin" tool from the UNIX command line. I have seen the error you mentioned before, but can't recall what the cause was - but I do recall getting everything done via orchadmin. I know you can delete the dataset with embedded spaces in the ...
by ArndW
Mon Jul 02, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Name from RT_CONFIGXXX
Replies: 4
Views: 1447

Usually the job is visible in the graphical tools and you can delete it from there. If it cannot be seen or deleted, then the TCL command "DS.CHECKER" will probably be able to do so. Failing all that, I would go in and manually delete the hashed files associated with that job. I'd also check the pro...
by ArndW
Mon Jul 02, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Question
Replies: 13
Views: 3970

Declare the fields to be long enough to contain the blanks, then trim and modify them to the correct length in a later stage (modify or transform)
by ArndW
Mon Jul 02, 2007 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage to be used
Replies: 7
Views: 1270

The funnel won't do that for you. But in a subsequent transform stage you can store the value from the previous row using stage variables and combine the rows there. If you explain why you need to do this (perhaps with an example) we might be able to suggest a better solution or approach.
by ArndW
Mon Jul 02, 2007 4:19 am
Forum: General
Topic: Can we set the default to null!!
Replies: 3
Views: 1280

nynali - it would be better to post in the appropriate forum, but I'm sure a moderator will find this thread and relocate it.

You can set the the default value by right-mouse clicking on the colum and then "edit row" to get to the details.
by ArndW
Mon Jul 02, 2007 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage to be used
Replies: 7
Views: 1270

I have trouble understanding this - normally you would join (for instance in a lookup stage) on the common EMPNAME or EMPNUMBER. But you might use a funnel stage to combine the 2 streams and then combine the 2 rows in a subsequent transform stage.
by ArndW
Mon Jul 02, 2007 2:55 am
Forum: General
Topic: Unable to load data in hash file
Replies: 4
Views: 1531

Make a copy of the job, replace the hashed file stage with a sequential file stage and look at the output, if it still makes no sense please post an excerpt from the sequential file.
by ArndW
Mon Jul 02, 2007 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Stage
Replies: 3
Views: 950

prams - usually tables don't have headers and footers, that is usually found in the realm of sequential files. Since you normally don't need a product such as DataStage to make a simple copy of a table there must be more involved and it would help if you could explain.
by ArndW
Mon Jul 02, 2007 12:07 am
Forum: General
Topic: Unable to load data in hash file
Replies: 4
Views: 1531

Are you certain that you clicked the "key" tick box for the two columns in the hashed file stage? Which are the 2 keys that are currently being shown in the hashed file?
by ArndW
Sun Jul 01, 2007 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp difference
Replies: 2
Views: 1368

It depends where you wish to compute this numeric difference. If you load the timestamp into DataStage and convert it into internal format you can subtract the two values to get an exact difference in days.
by ArndW
Sun Jul 01, 2007 10:16 pm
Forum: General
Topic: String to Number
Replies: 7
Views: 1768

Convert() will not round, this is being done elsewhere. What is the defined datatype of the column or stage variable or derivation where you are doing thsi?
by ArndW
Sun Jul 01, 2007 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal function - producing warnings
Replies: 6
Views: 2588

What is the string contents and what is the decimal column definition. Have you checked the other environment to see if you have a message handler set for that that job?
by ArndW
Sun Jul 01, 2007 5:17 am
Forum: General
Topic: String to Number
Replies: 7
Views: 1768

Good job!
by ArndW
Sun Jul 01, 2007 1:54 am
Forum: General
Topic: String to Number
Replies: 7
Views: 1768

Even though DS will do an implicit conversion from string to number in a transform stage, it is much better to explicitly convert using a function such as StringToDecimal(), which will take care of the sign.