Search found 15603 matches

by ArndW
Thu Oct 16, 2008 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Size
Replies: 2
Views: 1123

Are your VarChar() columns bounded or unbounded? Using unbounded strings will save space, at a cost of performance.
by ArndW
Thu Oct 16, 2008 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with index function in a filter
Replies: 3
Views: 956

Ahh, that is correct. the INDEX function won't work as a filter condition. Instead of a FILTER stage, use a transform stage with the INDEX() function in the constraints.
by ArndW
Thu Oct 16, 2008 5:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to pass DSProjectName macro as a parameter to Before jo
Replies: 8
Views: 2368

I just did a dummy test job with ExecSH of "echo #DSProjectName#" and that output my project name correctly. This was at V8.
by ArndW
Thu Oct 16, 2008 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting warnings
Replies: 1
Views: 1281

My guess is that your file has the first line as headings, and you didn't specify that in your sequential file stage.
by ArndW
Thu Oct 16, 2008 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with index function in a filter
Replies: 3
Views: 956

The Index function you gave will work. What is your probelm with it?
by ArndW
Thu Oct 16, 2008 5:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect to datastage server (internal error 39202)
Replies: 1
Views: 2689

When I searched the forum for the keyword "39202" I found many threads relating to this error. Have you checked to see if any of the suggestions in those threads might help you?
by ArndW
Wed Oct 15, 2008 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to replace integer with numeric in all the jobs/few jobs
Replies: 1
Views: 472

Such global actions can often be done by editing a .dsx export file and using macros or other tools to make the necessary changes. Note that this could potentially destroy a project, so needs to be done carefully and with backup of the existing project contents.
by ArndW
Wed Oct 15, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: abort after 50 warnings
Replies: 8
Views: 1649

The default is 50 Warnings, unless changed in the Director -> Options; I am not aware of a project level setting in the Administrator.
by ArndW
Wed Oct 15, 2008 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rounding issue while loading in to sql server
Replies: 4
Views: 859

Would it be possible to remove the character conversion from the process and stick with numeric values? This would make it simpler (and faster).
by ArndW
Wed Oct 15, 2008 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Carriage Return
Replies: 3
Views: 897

This was asked yesterday, check this thread.
by ArndW
Wed Oct 15, 2008 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage finished but still "running"
Replies: 2
Views: 688

Buffering is why. I would guess the stage was "Finished" but the job was still running "Running" as well.
by ArndW
Wed Oct 15, 2008 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading " from a sequential file with quotes double set
Replies: 2
Views: 661

Embedded quote characters in strings need to be doubled in order to be correctly read in again, i.e. the string would need to look like

Code: Select all

"Hello ""World"""
in order to represent the string

Code: Select all

Hello "World"
by ArndW
Wed Oct 15, 2008 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control de max # of Job related processes running on windows
Replies: 12
Views: 2964

We didn't want to be child-killers, we just throttled them a bit; sort of like Homer does to Bart :roll:
by ArndW
Wed Oct 15, 2008 5:12 am
Forum: General
Topic: Regarding Hash file
Replies: 8
Views: 1879

saikir - could you explain how the "Create File" can degrade performance, as I haven't observed that. Sometimes, with large hashed files, the CLEAR.FILE command can take a while; I've found that deleting and re-creating the file can be faster and also will take care of disk space used in the physica...
by ArndW
Wed Oct 15, 2008 2:00 am
Forum: General
Topic: Regarding Hash file
Replies: 8
Views: 1879

Inserting into hashed files can get slower as the file grows. Are you certain that you delete and re-create the hashed file each run?