Search found 53125 matches

by ray.wurlod
Mon May 14, 2007 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Edit DDL
Replies: 6
Views: 1198

The same is true in most databases. Mixed case identifier names and identifier names that contain non-alphanumeric characters (except underscore) need to be quoted.
by ray.wurlod
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;
by ray.wurlod
Mon May 14, 2007 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: InputData + NULL values
Replies: 1
Views: 712

No.
by ray.wurlod
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 ...
by ray.wurlod
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...
by ray.wurlod
Mon May 14, 2007 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Code Handling
Replies: 2
Views: 826

Many of the error codes can be resolved via a lookup on the SYS.MESSAGE hashed file. However you need a six digit key. Fmt(ErrorCode, "R%6") Apart from that most of the others are not retrievable using software. Some are documented in header files, but searching these has to be by ...
by ray.wurlod
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...
by ray.wurlod
Mon May 14, 2007 4:15 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 12719

I haven't had the chance to check yet. It may be that you need to quote the entire thing (remember parameters with spaces?).
by ray.wurlod
Mon May 14, 2007 4:13 pm
Forum: General
Topic: u
Replies: 4
Views: 1385

Please reinstate the original post to something sensible. We have a poster called U on the forum (apparently it's a fairly common Burmese name- there was even U Thant, who was a Secretary General of the United Nations) who may be offended by what you've done.
by ray.wurlod
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...
by ray.wurlod
Mon May 14, 2007 4:09 pm
Forum: General
Topic: row to column
Replies: 3
Views: 1267

Did you try the approach I outlined in my second paragraph?
by ray.wurlod
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

They are stored in separate fields in the record in DS_JOBOBJECTS, so my best guess would be a line terminator character or field mark. Or it just may not be possible. Any reason for preferring user-defined over generated SQL?
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...