Search found 53125 matches
- Mon May 14, 2007 4:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Edit DDL
- Replies: 6
- Views: 1198
- Mon May 14, 2007 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: KeyMgtGetNextValueConcurrent
- Replies: 9
- Views: 3347
The value you give to @ID in your UPDATE statement must be the same string (the name of the sequence) that you give in the KeyMgtGetNextValueConcurrent() function. Display the contents of SDKSequences to see what I mean.
Code: Select all
SELECT @ID FMT '32L', F1 FMT '10R' FROM SDKSequences USING DICT VOC;- Mon May 14, 2007 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: InputData + NULL values
- Replies: 1
- Views: 712
- Mon May 14, 2007 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: pros/cons XML
- Replies: 8
- Views: 2624
Because of the tags, XML files are substantially larger than sequential files for the same volume of data. For that reason I prefer to use the latter. However, XML can transport the metadata along with the data in the same file, which may prove useful in some circumstances. Apart from that, I think ...
- Mon May 14, 2007 4:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage MQ
- Replies: 2
- Views: 1274
There's no such thing as DataStage MQ. MQ Series is a separate product in the IBM WebSphere group. Plug-in stages for DataStage exist to allow you to read from and to write to MQ Series queues. Depending on your DataStage version, the MQ Series server may need to be co-resident with the DataStage se...
- Mon May 14, 2007 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Code Handling
- Replies: 2
- Views: 826
- Mon May 14, 2007 4:17 pm
- Forum: General
- Topic: Best way to process a list and do perform SQL one at a time
- Replies: 14
- Views: 5264
(a) a "list of things" loop in a job sequence (b) a server job that iterates through the list (by reading the file) and invokes another job to process the data using UtilityRunJob() function from a Transformer stage The second approach is necessary if you have a version earlier than 7.5, which is th...
- Mon May 14, 2007 4:15 pm
- Forum: General
- Topic: Processing files in a directory
- Replies: 44
- Views: 12719
- Mon May 14, 2007 4:11 pm
- Forum: General
- Topic: Update from DS 7.5.1 SE to DS 8x EE
- Replies: 2
- Views: 1170
The version 8 product spent over a year in beta testing so that as many pitfalls as possible would be eliminated. Word reaching me is that that part of the upgrade process (upgrade of server jobs) is as simple as it appears - indeed, they update in place, you don't even need to import them. Though o...
- Mon May 14, 2007 4:09 pm
- Forum: General
- Topic: row to column
- Replies: 3
- Views: 1267
- Mon May 14, 2007 1:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can I use Insert or update statement in User defined sql?
- Replies: 9
- Views: 1797
- Mon May 14, 2007 1:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: column limit in DataStage
- Replies: 13
- Views: 8681
It depends on a number of factors. For example, if you are reading via ODBC then the limit is 400 columns by default, though this can be changed by specifying MAXFETCHCOLS in the uvodbc.config file at least for that data source. You might also need to increase MAXFETCHBUFF, which defaults to 8KB per...
- Mon May 14, 2007 1:16 am
- Forum: General
- Topic: row to column
- Replies: 3
- Views: 1267
Do you know in advance how many rows there will be? Is the change condition a change of case, or the appearance of the space character? That is, could you read into three columns as a space delimited record? If you could split the file into three based on the space, then you could write the rows int...
- Mon May 14, 2007 1:06 am
- Forum: General
- Topic: How to collect job status
- Replies: 12
- Views: 4268
No. Because I would have to guess, even what scripting language you are using. Type dsjob alone to get the overall syntax. Then type dsjob with any of the options to get more information, for example dsjob -linkinfo to learn the remainder of the syntax to be used with this particular option. You nee...