Search found 15603 matches
- Mon May 30, 2005 9:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abort after 999.999 warning
- Replies: 7
- Views: 1848
- Mon May 30, 2005 9:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abort after 999.999 warning
- Replies: 7
- Views: 1848
Craig - I had to say that about the warnings (if I hadn't I'm sure Ray would have put it in somewhat stronger words when he logs in later). The overhead to write the warnings in that job is going to be far higher than that of the job itself. I've had warning that I was sure I couldn't get rid of - u...
- Mon May 30, 2005 8:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abort after 999.999 warning
- Replies: 7
- Views: 1848
eoyylo, You could set the warnings to 0 but.... For each warning an entry is written to the log file. For that large a number of warnings you are going to get a job performance that is probably about as fast typing the data into the database by hand (well, maybe not quite that bad, but close enough)...
- Mon May 30, 2005 8:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Event Type From DSGetLogEntry
- Replies: 4
- Views: 1605
- Mon May 30, 2005 5:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Event Type From DSGetLogEntry
- Replies: 4
- Views: 1605
Palmeal, You should use a different function for your substring, that is where your error is originating. The output of field 1 is in the form ""14170\2005-05-30 09:39:44\5\\21\Starting Job JdDSSJOBCheckJobControl. (...)"." (note that when I try it I get a 5 digit message number) To parse the String...
- Mon May 30, 2005 2:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compilation failed
- Replies: 3
- Views: 1169
- Mon May 30, 2005 1:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Converting Date() to datetime
- Replies: 7
- Views: 1512
- Mon May 30, 2005 1:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Converting Date() to datetime
- Replies: 7
- Views: 1512
- Mon May 30, 2005 1:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage variable Vs Routine- Which one gives good performance
- Replies: 4
- Views: 1057
dslearner, if you can put your logic in stage variables it tends to be a bit faster than by incurring the overhead of calling a routine (which involves pushing the current program on the stack, calling a new routine, and popping back to the caller). As Wolfgang explained, there are many cases where ...
- Mon May 30, 2005 1:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "Use Account name " option is not working
- Replies: 5
- Views: 1148
- Mon May 30, 2005 1:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Queries on sequential file stages
- Replies: 7
- Views: 2384
- Fri May 27, 2005 10:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Create images from a SQLServer image data field
- Replies: 1
- Views: 473
- Fri May 27, 2005 10:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: to_char and to_number equivelent
- Replies: 9
- Views: 3346
Johm73, If you redirect your output to a sequential file, and add an output column that has the result of NUM(YourNumberColumn) does it show numeric (i.e. a value of 1)? If it shows 0 then look at your number field (do you need to do a TRIM() on the string to get rid of spaces? Does it contain a dec...
- Fri May 27, 2005 10:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: to_char and to_number equivelent
- Replies: 9
- Views: 3346
Johm73, If you are doing a string to integer conversion, the function NUM(YourString) will return a 1 if it is numeric, a 0 if it is not. You can use either the FMT() or the OCONV() function to expictly format your output. What is your target Oracle datatype? If your insert is failing on each row, h...
- Fri May 27, 2005 9:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: to_char and to_number equivelent
- Replies: 9
- Views: 3346
Hello Johm73, the good news about DS Server is that it is essentially typeless. If you have a varchar column and you add 1 to, the engine will perform a conversion. This is good if the column actually contains a number but causes conversion issues if it isn't. There are a number of function and conv...