Search found 53125 matches

by ray.wurlod
Tue Sep 06, 2005 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding Date conversion
Replies: 17
Views: 6101

Show us exactly what you did, and that may be an easier question to answer.
Did you build this incrementally, verifying that your conversion to string is successful? If so, what does the string look like? That having been done, does that correspond to the date picture you are currently using?
by ray.wurlod
Tue Sep 06, 2005 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Stage
Replies: 5
Views: 1886

Currently I need to drink a glass of water when George Bush scratches his ear.

Only when he scratches his right ear.

Any idea how to achieve this?

:roll:

Try and sleep and try and sleep until you get it.
by ray.wurlod
Tue Sep 06, 2005 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to install NLS seperately?
Replies: 12
Views: 4234

Yes, it's OK to set NLSMODE to 0 and test.

But remember the 4013th corollary to Murphy's Law - you won't have a problem if you have a backup.
by ray.wurlod
Tue Sep 06, 2005 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COUNT Problem
Replies: 12
Views: 2623

Code: Select all

FUNCTION CountHashedFile(HashedFileName)

Command = "COUNT " : HashedFileName

Call DSExecute("UV", Command, Output, SystemReturnCode)

Ans = SystemReturnCode

RETURN(Ans)

Sheesh!
by ray.wurlod
Tue Sep 06, 2005 6:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Execute Update Statements
Replies: 8
Views: 2687

I have done this in India, where the area code can be from two to five digits. You have to document the rules. You need to know what are and are not valid area codes then, if the phone number begins with this, decompose it. For speed, I ended up using a bit-matching technique against position in an ...
by ray.wurlod
Tue Sep 06, 2005 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Null Handling
Replies: 2
Views: 1543

If it's a Date data type, then the replacement value must be a date. And this must match your date picture (for example "%yyyy-%mm-%dd").
by ray.wurlod
Tue Sep 06, 2005 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding oracle enterprise stage
Replies: 8
Views: 3252

Someone at your site needs to ensure that the PATH environment variable is correctly set in the dsenv file so as to include the directory in which the orchoracle executable exists.
by ray.wurlod
Tue Sep 06, 2005 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: use of column import/transformer
Replies: 3
Views: 1073

Can you do all the decompositions in stage variables and load the necessary columns from these?
by ray.wurlod
Mon Sep 05, 2005 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Joc trmplates
Replies: 7
Views: 2398

What's your reason for making that statement? As far as I am aware no one in Ascential/IBM has officially declared the demise of server jobs.

An' there's still a truckload of bugs that need fixing in server jobs. :(
by ray.wurlod
Mon Sep 05, 2005 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal
Replies: 3
Views: 1394

Assuming that the data type is a string of some kind, a buildop to remove the thousands delimiter(s), detect the sign and move it to the front of the string seems to be the way to go.
by ray.wurlod
Mon Sep 05, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for Alphabet
Replies: 1
Views: 596

Since you're searching for one character, the Index() function will be the most efficient.

Code: Select all

Index("JKLMNOPQR", Right(InLink.ColName,1), 1) > 0
by ray.wurlod
Mon Sep 05, 2005 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Killing process left running from aborted job
Replies: 13
Views: 26184

Warning!! A job consists of more than one process. For server jobs there is one process (executing DSD.RUN) controlling the job and zero or more other processes (executing DSD.StageRun) which are child processes of the controlling process. Find and kill any child processes before killing the contro...
by ray.wurlod
Mon Sep 05, 2005 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import job get error DSR_SELECT and CATALOG errors.
Replies: 8
Views: 2263

DSR_SELECT errors mean that there's something wrong with the Repository for that project. Given that DS.REINDEX doesn't help I'd guess that it's because of the space in the project name. The internal error (81021 "error writing to pipe") comes from the DataStage RPC mechanism; my guess is that it ca...
by ray.wurlod
Mon Sep 05, 2005 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COUNT Problem
Replies: 12
Views: 2623

Read through my post again, particularly the second example.
by ray.wurlod
Mon Sep 05, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to install NLS seperately?
Replies: 12
Views: 4234

It won't corrupt any jobs. The same can't be guaranteed for the job designs, however. In these you have specified NLS mapping, and now the NLS maps won't be loaded, so no mapping can take place. You will receive lots of warnings to this effect. Further, the results without mapping will need to be ch...