Search found 15603 matches
- Wed Aug 24, 2005 11:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance Tuning by dropping the Index
- Replies: 2
- Views: 1160
"Dropping an index" is a Database term; it is explained in great and painful detail in the appropriate forums. Basically when you write to a table, you not only write the data but simultaneously the Database does such things as check column or table constraints, fire off triggers and maintain the in...
- Wed Aug 24, 2005 11:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null Values for all 30 columns
- Replies: 5
- Views: 1060
- Wed Aug 24, 2005 11:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Wrong Routine value returned
- Replies: 9
- Views: 1625
- Wed Aug 24, 2005 11:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null Values for all 30 columns
- Replies: 5
- Views: 1060
- Wed Aug 24, 2005 11:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing quote (") to a file in a routine
- Replies: 6
- Views: 2277
- Wed Aug 24, 2005 10:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Wrong Routine value returned
- Replies: 9
- Views: 1625
- Wed Aug 24, 2005 10:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merging Three simple Text files
- Replies: 7
- Views: 1451
the output of "DEL /?" Gives us: C:\Documents and Settings\guest3>del /? Deletes one or more files. DEL [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names ERASE [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names names Specifies a list of one or more files or directories. Wildcards may be used to delete multip...
- Wed Aug 24, 2005 10:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delay Link Execution
- Replies: 3
- Views: 717
I think I would make link 2 write to a sequential file, and then continue from the sequential file to the rest of the processing. The rest won't continue until all the data has been processed and the data source exhausted. Doubles your I/O but solves your issue (although I am curious as to why you a...
- Wed Aug 24, 2005 9:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Smart way to get rid of warning on Decimal to Date conversio
- Replies: 7
- Views: 1851
- Wed Aug 24, 2005 9:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: installing two different version of DS client
- Replies: 9
- Views: 1919
- Wed Aug 24, 2005 9:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Client throwing error while installing - WinXP
- Replies: 1
- Views: 603
I recall having similar issues with InstallShield packages. Check your Control Panel "add or remove programs" to see if the system still thinks that some software is installed and remove it, reboot and then re-try the install. I think that the InstallShield application plays around in the registry p...
- Wed Aug 24, 2005 9:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: installing two different version of DS client
- Replies: 9
- Views: 1919
- Wed Aug 24, 2005 9:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to call Table Metadata columns in a routine??
- Replies: 5
- Views: 1216
Venkat, I cannot think of a way to let the routine know from which column it was called, the DSGet...() routines go down to a link/stage level only. I think your only way of getting this information is to put a 3rd parameter with the name of the column into the call. You could always code it with ju...
- Wed Aug 24, 2005 5:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to check server version
- Replies: 4
- Views: 1916
- Wed Aug 24, 2005 12:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CFF
- Replies: 6
- Views: 1499
Srekant, think about what Ray and the DS job are telling you: the file has 1146600 bytes and a fixed width of 716. This is not correct; since the filesize is not a multiple of 716. Because this is wrong, DS cannot partition the reading of this file across processes. Look at the same file format whic...