Search found 53125 matches

by ray.wurlod
Tue Oct 19, 2010 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector not running Before SQL
Replies: 11
Views: 10166

Maybe you need the B1 and B2 stage?!!! :lol: (Australian joke) The message suggests that you're trying to delete (or replace, which is delete-then-insert) rows in a table that is referenced by foreign keys in another table. Perhaps you missed disabling the constraints on the referencing table(s)?
by ray.wurlod
Tue Oct 19, 2010 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Japanese Data in DS
Replies: 1
Views: 1146

When dumping the worksheet into a CSV file, what character mapping (code page) are you specifying?
by ray.wurlod
Tue Oct 19, 2010 12:16 am
Forum: General
Topic: Command prompt stage throwing error at run time
Replies: 5
Views: 2171

Where do the "?" characters in the error message come from?
Kartheek wrote:Command failed to execute - e:\apps\ascential\Projects\xxx>More? .
Log file is created which contains this message 'e:\apps\ascential\Projects\xxx>More?'
by ray.wurlod
Tue Oct 19, 2010 12:14 am
Forum: General
Topic: Declare/Use of Variables from SQL Oracle Table data?
Replies: 6
Views: 11515

Use a Job activity upstream of the User Variables activity. In that Job activity run a job to fetch the value from Oracle and park it somewhere, for example in the job's user status area or in a file. The User Variables activity can then assign a value to the variable by accessing that value.
by ray.wurlod
Mon Oct 18, 2010 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Like operation
Replies: 2
Views: 1230

From your description (exact text for description) I'd suggest a simple If..Then..Else construct would suffice.
by ray.wurlod
Mon Oct 18, 2010 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job aborting DSLink: read_delimited()- invalid quotes
Replies: 4
Views: 2927

Basically because the record contains more quote characters in total than the parser expects to find. Can you perhaps read with Quote Character set to None, then trim the end quotes from each string?
by ray.wurlod
Mon Oct 18, 2010 4:00 pm
Forum: General
Topic: Link Naming Standard
Replies: 11
Views: 5348

The great thing about standards is that there are so many to choose from.

Q: How many Microsoft engineers does it take to change a light bulb?
A: None. They simply define a new standard called "darkness".
by ray.wurlod
Mon Oct 18, 2010 3:47 pm
Forum: General
Topic: Subroutine - visible !!! ???
Replies: 5
Views: 2364

Mostly, however, you have to use the function type "Before/After Subroutine". Before you make the change, copy the code at least to your clipboad, because you may lose the code when making the change.

A before/after subroutine has precisely two arguments.
by ray.wurlod
Mon Oct 18, 2010 4:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: char to varchar
Replies: 4
Views: 1867

Thank you. It was simple (and presumably helpful) three years ago too.
by ray.wurlod
Mon Oct 18, 2010 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(6)
Replies: 6
Views: 4479

APT_DISABLE_COMBINATION
by ray.wurlod
Mon Oct 18, 2010 4:25 am
Forum: General
Topic: Link Naming Standard
Replies: 11
Views: 5348

DataStage names links Link_n where n is the order that the object was added to the design. You can call links whatever you like, provided that the name begins with a letter and contains only letters and underscore characters. There's probably a name length limit too.
by ray.wurlod
Mon Oct 18, 2010 4:24 am
Forum: General
Topic: Subroutine - visible !!! ???
Replies: 5
Views: 2364

What is the routine type (on its General tab)?
by ray.wurlod
Mon Oct 18, 2010 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(6)
Replies: 6
Views: 4479

No idea. For diagnostic purposes start by disabling operator combination, to learn which stage is throwing the error. Then it might make more sense.
by ray.wurlod
Mon Oct 18, 2010 1:14 am
Forum: General
Topic: Command prompt stage throwing error at run time
Replies: 5
Views: 2171

? is a special character to the DOS shell. Don't use it. The Command stage needs to retain control - starting a background process means that it loses control.
by ray.wurlod
Mon Oct 18, 2010 1:12 am
Forum: General
Topic: Declare/Use of Variables from SQL Oracle Table data?
Replies: 6
Views: 11515

Declare them in a User Variables activity - they remain accessible to any activity downstream (that is, linked via any pathway to the User Variables activity).