Search found 156 matches

by 1stpoint
Fri Mar 19, 2004 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Long DataType - Oracle datatype not presently supported
Replies: 14
Views: 12086

Clob

I recently had issues with the Long datatype as well. We ended up using CLOB instead because there are alot of restrictions with Long in oracle.
by 1stpoint
Fri Mar 19, 2004 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best Method for Concatenating data from multiple rows.
Replies: 7
Views: 2871

All the rows?

Ray, Yes, I have tested it with several data sets and it correctly processes them all. The destination column is a CLOB in oracle and the requirement was to put a CR/LF after each text component. I had some issues with the stage variables when I had several but I was able to simplify it to two. Then...
by 1stpoint
Thu Mar 18, 2004 12:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best Method for Concatenating data from multiple rows.
Replies: 7
Views: 2871

Solved It!

I used 2 stage variables, 1 to hold the concatenated values and 1 to determine when to clear it.

I then outputted to an Aggregator stage and used the Last derivation. It works and it's fast and NO HASH FILES!!
by 1stpoint
Thu Mar 18, 2004 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best Method for Concatenating data from multiple rows.
Replies: 7
Views: 2871

HashFile

I thought about using the Hash File but I am hesitant since the volume is LARGE. I think the StageVariable approach will work by comparing the PrevPart to the current row and then concatenating. I'm just having difficulty with it.
by 1stpoint
Thu Mar 18, 2004 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best Method for Concatenating data from multiple rows.
Replies: 7
Views: 2871

Best Method for Concatenating data from multiple rows.

Problem: Incoming file has 1:n rows that I want to process and produce a single row with a concatentated field (CLOB). Part PartText 123 This is line 1 of part 123 This is line 2 of part 456 This part has only 1 line ... Result: Part 123 This is line 1 of part:This is line 2 of part 456 This part ha...
by 1stpoint
Thu Mar 18, 2004 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load Pack install problems
Replies: 2
Views: 1066

more definition

We cannot get LoadPack to communicate from BW to DataStage. We can ping from BW to the DataStage server. Does anyone have any experience with this?
What are your LoadPack installation specifics? This sounds strangely like permissions.
by 1stpoint
Wed Mar 10, 2004 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write all logs to a formatted file
Replies: 4
Views: 2107

shell script

You can do this through a shell script. I wrote one a few years ago which did this using the loginfo executable. This can also be automated into a Batch Job.
by 1stpoint
Wed Feb 18, 2004 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need Datastage license key ( windows 2000 )
Replies: 7
Views: 3118

Tan Q

I concur. Let's keep the integrity of the DataStage development community in tact.
by 1stpoint
Thu Jan 29, 2004 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: orchoracle load error
Replies: 1
Views: 996

Clue

The clue is in your LD_LIBRARY path environment variable. Check your installation notes as it's most likely missing a path.
by 1stpoint
Tue Jan 13, 2004 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a function to convert a string into a number ?
Replies: 6
Views: 2721

not necessarily true

I wrote a VAL function a few years back.

It will convert things like "1.244E10", "$5767.88" and other non numeric fields to number.
by 1stpoint
Fri Jan 09, 2004 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC TO ORACLE NOT SUPPORTED
Replies: 12
Views: 3170

OCI

Have you tried OCI which is a native connection?
by 1stpoint
Thu Jan 08, 2004 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AGGGGGGGGGGGGG!!!
Replies: 14
Views: 6641

Hash File??

Why are you writing to 3 separate dos files and then concatenating them??
I would have used a non-indexed hash file and then cleared it at the beginning of the process.
by 1stpoint
Wed Jan 07, 2004 12:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XMLReader
Replies: 2
Views: 1315

Memory Leak?

This sounds like a Memory Leak issue. You should open a case with support and they can walk you through the debugging process. If you're on unix you might want to do a ps -aux while the job is running and watch the process memory to see if it is causing the job to crash.
by 1stpoint
Tue Jan 06, 2004 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Documentation Tool
Replies: 2
Views: 1975

no

What you would need to do is a "screen shot" in Designer of each DataStage Job. The Documentation Tool will update it's repository tables of Job information but not the logic.
by 1stpoint
Tue Jan 06, 2004 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: maximum length of SQL WHERE clause? (Abnormal Termination)
Replies: 11
Views: 6952

Views are more maintainable

It's a good practice that anytime you do any complex SQL with a WHERE clause to create a view instead. This way if you change the condition of the WHERE clause you do not need to recompile your datastage jobs. In many installations I have been at, the DBAs enforce the creating of views for EVERY tab...