Search found 4992 matches
- Wed Jan 11, 2006 2:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: concatenate selected cols into one not hardcoding cols
- Replies: 8
- Views: 1492
Read the forum again and as per some one's suggestion I broke the job into two streams and it worked. I am curious to know the reason for this behaviour ? Anyone care to explain.... It's just one of those things. The pipe solution is great for added performance, but if your performance is acceptabl...
- Wed Jan 11, 2006 9:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Version 5.2r1 client for DataStage version 7.5
- Replies: 2
- Views: 695
- Tue Jan 10, 2006 9:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: concatenate selected cols into one not hardcoding cols
- Replies: 8
- Views: 1492
Spool the data to a Sequential text file with a "," (comma) as the field separator, having the unique row identifier as the first column, an additional new column called "FAKE_SEPARATOR" with a derivation of literal "|" (pipe), and then the rest of the attribute columns after that. Read back the sam...
- Tue Jan 10, 2006 5:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading a report and fetching the data to load to a DB
- Replies: 3
- Views: 719
Use the Sequential stage, declare 1 column of metadata that will read the entire line. In a transformer constraint, throw away all lines that contain anything that identifies the line as blank, header, title, or other formatting information. Output the remaining data rows to a Sequential file. Now, ...
- Tue Jan 10, 2006 5:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ETL on Oracle Snapshots
- Replies: 1
- Views: 633
If you mean extracting from a snapshot (static copy of the primary database), sure, why not? You're basically hitting a remote copy, as long as the data is synchronized across all of the tables at the point of the snapshot, sounds okay. You've got a static dataset, so you'll have to coordinate aroun...
- Tue Jan 10, 2006 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Error - While importing the jobs.
- Replies: 2
- Views: 2415
- Tue Jan 10, 2006 3:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Formatting dates question
- Replies: 3
- Views: 766
There are no time elements to dates as Server has no data typing enforced, everything is a string. Therefore, any value of 2005-12-31 is just a text string inside DataStage. If you're asking from an SQL perspective, I suggest you specify in your SQL the format of date/time values. In Oracle, it woul...
- Tue Jan 10, 2006 1:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: drop temporary tables
- Replies: 0
- Views: 743
- Mon Jan 09, 2006 10:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to initialize Direct Path context in Orabulk stage
- Replies: 13
- Views: 5407
The load file must be resident on the same server as the database, and must be invoked via a call from that same server. DIRECT path does not care about indexes, constraints, and triggers. They are all disable during the load operation. Switching from CONVENTIONAL to DIRECT path is something that re...
- Sat Jan 07, 2006 10:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: effective method
- Replies: 1
- Views: 476
If your stored procedures DO something, use a Sequencer job with a Command stage and run sqlplus or a Batch job to call the DSExecute API to have more control over the sqlplus session. If you're using sp's to STREAM data (input and output), then use your OCI stages. If you're using generated or user...
- Thu Jan 05, 2006 4:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help with using sed, awk, nawk or tr
- Replies: 22
- Views: 5026
I scratched my head and except for a few fleas no memories of switches on given commands came to mind. The only solution I could think of is a .ksh script to parse each row, loop thru the count of "|" found in each line 1 to x, use cut -d"|" -fx to extract each field and then use cut -d"]" -f2 to ta...
- Thu Jan 05, 2006 2:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with Datastage Upgrade
- Replies: 5
- Views: 1623
- Thu Jan 05, 2006 1:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: why we need the 3 services in Datastage?
- Replies: 1
- Views: 587
- Thu Jan 05, 2006 8:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: I need Help on giving permissions to access the Server
- Replies: 1
- Views: 594
- Thu Jan 05, 2006 8:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inserting or updating rows based on the lookup
- Replies: 7
- Views: 9551