Search found 15603 matches

by ArndW
Thu Mar 20, 2008 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 8423

I would start with adding "-MODE NORMAL" to the command line. But how about printing out stderr in your script as well?
by ArndW
Thu Mar 20, 2008 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files and long strings
Replies: 8
Views: 1824

That's the way I looked at it, I mean adding a 0 doesn't really change a value, does it?
by ArndW
Thu Mar 20, 2008 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Phantom (flan flinger) strikes again
Replies: 12
Views: 2664

You need to use your favorite editor in this case. All lines count but sometimes the compiler gets a hiccup and doesn't correctly count the line numbers and will be off by a couple of lines, so use the line 777 as a rough indicator.
by ArndW
Thu Mar 20, 2008 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files and long strings
Replies: 8
Views: 1824

I added $APT_MAX_DELIMITED_READ_SIZE as a user-defined environment variable and set it, but unfortunately I got the same error.

[Addedum] - I missed a "0" in typing the size on my first test, after I fixed that mistake the job ran smoothly with large rows
Many thanks!
by ArndW
Thu Mar 20, 2008 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Phantom (flan flinger) strikes again
Replies: 12
Views: 2664

Do you not have the source to the routine "GetChampLigneV2" in order to look at lines 777- ?
by ArndW
Thu Mar 20, 2008 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files and long strings
Replies: 8
Views: 1824

Sequential files and long strings

I have a simple sequential file with just one text column and no delimiters. Each row has a different length and some of the rows are quite long (200,000 to 300,000 characters). When I try to read these rows they are rejected or cause the job to abort with the error message "Sequential_File_223,0: C...
by ArndW
Thu Mar 20, 2008 6:31 am
Forum: General
Topic: Kill Process and Release resource
Replies: 3
Views: 1260

Never , ever use kill -9. By doing so you will kill the process and not release resources. Now that you have managed to do this, you have just a couple of choices. First of all, enable your deadlock daemon; that way the longest you will need to wait in the future is the default 15 minutes between c...
by ArndW
Thu Mar 20, 2008 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UCS-2
Replies: 20
Views: 5263

The National Language Support Guide has a whole chapter titled "Creating new maps"
by ArndW
Thu Mar 20, 2008 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different formats
Replies: 3
Views: 982

Could you explain your requirements again, I am not sure what you are trying to do.

If your source data has 2 columns in a file with quoted string and comma separator, i.e.

"Hello","World"

Then what do you wish your output to look like?
by ArndW
Thu Mar 20, 2008 5:40 am
Forum: General
Topic: Datastage version 8.0
Replies: 3
Views: 1064

Hello and welcome to DSXchange, run4jeet. The question is so broad that you won't really get a good answer here. If you go to IBM Website and type in "DataStage 8" in the search window you will get 1373 documents to choose from that will hopefully go towards answering that question. Once you have sp...
by ArndW
Thu Mar 20, 2008 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Has anyone worked with "Zones" in Solaris 10
Replies: 3
Views: 1062

Has anyone worked with "Zones" in Solaris 10

Has anyone used the Solaris 10 "Zones" successfully with DataStage (either 7.5x or 8.x)? I realize it isn't officially supported but would like to know if there are any known issues with it?
by ArndW
Thu Mar 20, 2008 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Initcaps
Replies: 6
Views: 1311

I just realized I mis-typed the function, the correct one is "OCONV(In.ColumnName,"MCT")
by ArndW
Thu Mar 20, 2008 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance Isuue
Replies: 6
Views: 1074

While loading from Hash file to Sql server table it is taking 28 rows/sec That doesn't help narrow down the bottleneck. Replace the final hashed file stage with a sequential file that is located on /dev/null and re-run. Is the speed still around 28/rows per second? If yes, then you now know that th...
by ArndW
Thu Mar 20, 2008 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Initcaps
Replies: 6
Views: 1311

There is no builtin function in PX to do this. If you can write this portion of your processing in Server, then you can use the function OCONV(In.Column,"MCN") to perform this conversion for you.
by ArndW
Thu Mar 20, 2008 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter visibility
Replies: 14
Views: 3755

When you call a job from job sequence you have to specify a value for parameter "A", if you use the value of job sequence parameter "A" then the answer to your question is "yes".