Search found 15603 matches

by ArndW
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

Roy - I'm going for the fast-food high volume posting approach; I'll leave the real quality to Roy's and Ray's (play on words to one of my favorite international food chains, and my favorite bartender [but another Ray] :lol: ).
by ArndW
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...
by ArndW
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)...
by ArndW
Mon May 30, 2005 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Event Type From DSGetLogEntry
Replies: 4
Views: 1605

Palmeal - Your substrings depending on everything having a fixed length & position, so your parsing returned odd values when that was not the case. I can just say "been there, done that" Nice is just fine right now - this weekend was awesome and the beaches in Cannes and Antibes are full {of att...
by ArndW
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...
by ArndW
Mon May 30, 2005 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation failed
Replies: 3
Views: 1169

sushanth,

the XML packages need to be installed explicitly, they are not installed as part of the DS default installation. See the installation guide for DataStage and also that for XML for details on how to perform this (quick) install.
by ArndW
Mon May 30, 2005 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Date() to datetime
Replies: 7
Views: 1512

snassimr,

I'm not at a DS machine right now, but your TIME() function is, I think, returning Milliseconds so your time oconv might not be working as expected. If you redirect your output to a sequential file instead of the SQL server table, what does derivation write to the file?
by ArndW
Mon May 30, 2005 1:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Date() to datetime
Replies: 7
Views: 1512

Please show which statement you used and someone here will assist you, but just stating "it didn't work" won't help towards solving the problem.
by ArndW
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 ...
by ArndW
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

Shyju_010,

I hope this answer is detailed enough for your expectations. When you enter the "Use Account Name" you specify the DataStage project name. You most likely had a spelling error.
by ArndW
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

chulett wrote:Hope they get the job, Arnd. :wink:


Naah, they won't ;)
by ArndW
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

DataStage doesn't have an image stage, it would just take this data (as a binary datatype) and pass it through to wherever you wish to send it. If you know the format of your image files, or if each entry in the "image" column is it's own file, then you could use DataStage to do this.
by ArndW
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...
by ArndW
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...
by ArndW
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...