Search found 53125 matches
- Mon Apr 05, 2004 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Insert New Rows or Update existing rows
- Replies: 4
- Views: 1368
What you really want is a slightly different job design. "Insert New Rows or Update Existing Rows" is not efficient for updates; an insert has to be attempted and fail because the row already exists before the update is attempted. A better design is to have two links into the database, one doing "in...
- Mon Apr 05, 2004 4:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Checking for nulls
- Replies: 3
- Views: 1296
- Mon Apr 05, 2004 4:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Transposing rows to columns
- Replies: 16
- Views: 8245
- Mon Apr 05, 2004 4:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Administration in Unix without being root.
- Replies: 1
- Views: 1138
- Mon Apr 05, 2004 4:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting 4 digit number from a Character Column
- Replies: 3
- Views: 1054
You also have to specify what you want to happen if there isn't a four digit number in the input column. Also, what do you want to do if the CHAR(5) column contains five digits? You can use pattern matching to determine whether there is a four digit number. For example, you might set up the followin...
- Mon Apr 05, 2004 4:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: regarding a datastage error
- Replies: 2
- Views: 1153
- Mon Apr 05, 2004 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: EXPORT PROBLEM
- Replies: 3
- Views: 1147
- Mon Apr 05, 2004 12:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Handling Huge files
- Replies: 3
- Views: 2667
- Mon Apr 05, 2004 12:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL Server Connectivity Problem
- Replies: 11
- Views: 2963
I think the time has come for you to do some diagnosis. Try connecting to the data source with the DS_CONNECT command in your DataStage project. Within the branded_odbc directory is a READ.ME file that is worth reading through, and a demoodbc executable in branded_odbc/demo (and a readme file that e...
- Sun Apr 04, 2004 11:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling Huge files
- Replies: 2
- Views: 1136
No. The sqlldr utility only does bulk loads. This is typically the final step in a DataStage job, which also performs extraction from source, cleansing, transformation, aggregation, and so on. You're not comparing apples with apples here. However, parallel extender (PX) does give you potentially hug...
- Sun Apr 04, 2004 11:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL Server Connectivity Problem
- Replies: 11
- Views: 2963
- Sun Apr 04, 2004 11:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC return from lookup
- Replies: 3
- Views: 1239
One of them. This is the only safe answer. It depends on how the combination of ODBC driver and database server resolve your query. There's nothing to stop you specifying which one you want by switching to user-defined SQL and adding an extra constraint, even a correlated sub-query. Of course your l...
- Sun Apr 04, 2004 11:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job to move Data in Vertical format to Horizontal Format
- Replies: 17
- Views: 14440
"Synthetic" means generated by the underlying "UV" engine (now DataStage Engine). It's like a system variable; you don't have to do anything; it's just there. To create a column in a UV table as multi-valued, specify the keyword MULTIVALUED in the column definition. For example: CREATE TABLE MyTable...
- Sun Apr 04, 2004 11:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Handling Huge files
- Replies: 3
- Views: 2667
No. The sqlldr utility only does bulk loads. This is typically the final step in a DataStage job, which also performs extraction from source, cleansing, transformation, aggregation, and so on. You're not comparing apples with apples here. However, parallel extender (PX) does give you potentially hug...
- Sun Apr 04, 2004 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Long numbers distorted by DS
- Replies: 6
- Views: 2159
This one is tricky. Default precision is 15 but should be able to be modified with the EXACTNUMERIC configuration parameter. Execute the command smat -t | grep EXACTNUMERIC to determine whether your change was effective. Try editing the JOBCONTROL.H file (in the DSINCLUDE subdirectory), adding the f...