Search found 42189 matches

by chulett
Wed Jan 27, 2010 12:19 pm
Forum: General
Topic: Multiple queries in ODBC Stage
Replies: 3
Views: 1914

You need to use parameter markers in your update DML just like is shown for the insert. The problem is going to be they are positional in ODBC so if you place a single ? there it will substitute the value from the first column from the link. You'll need to rearrange the columns so that the value for...
by chulett
Wed Jan 27, 2010 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling jar file from DataStage
Replies: 6
Views: 4015

Not all validators are created equal. We had to do our validation outside of DS using Java to match the level of 'checkness' that our consumer (Google) was expecting.
by chulett
Wed Jan 27, 2010 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicates but keep first 5
Replies: 14
Views: 4169

:!: In that order? If you are going to suggest a stage variable solution that relies on them being in the correct order to function properly, please make sure you post them in the correct order. Three doesn't hurt but you only really need two variables and I would number things differently to make i...
by chulett
Wed Jan 27, 2010 8:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass a parameter for stored procedure in the odbc stage
Replies: 1
Views: 957

Please be specific as to what your issue is. What exactly does "datastage is not identifying the procedure" mean? Post any errors you are getting.
by chulett
Wed Jan 27, 2010 8:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 1
Views: 1499

To restart any aborted restartable sequence from the beginning, you must Reset it first.
by chulett
Wed Jan 27, 2010 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open executable job file RT_CONFIG60
Replies: 6
Views: 6259

Does this happen just for you or for everyone? Is this a new installation where things never quite worked or was it working fine for a time and then suddenly stopped? Details, please. For the former, I would wonder about permissions. For the latter, disk space. Do you know where your projects are ph...
by chulett
Wed Jan 27, 2010 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can i output to NULL from transformer ?
Replies: 5
Views: 1709

Hmmm... I don't recall ever having to worry about overwrite v. append when outputting to /dev/null, always left it at the default of overwrite I do believe.
by chulett
Wed Jan 27, 2010 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: insert numeric to date in oracle 10g
Replies: 2
Views: 1128

You can either send it as a string in that NLS format or a Best Practice is to use a proper TO_DATE() function in your SQL. The stage will generate it for you for a Date or Timestamp field, assuming you will match the format it uses - as you should.
by chulett
Tue Jan 26, 2010 10:47 pm
Forum: General
Topic: Empty Job parameter error when using it in a DRS query
Replies: 6
Views: 4028

8)
by chulett
Tue Jan 26, 2010 4:53 pm
Forum: General
Topic: Empty Job parameter error when using it in a DRS query
Replies: 6
Views: 4028

Try adding the quotes to the query itself.

WHERE category = DECODE ('#CATEGORY#', '',category, '#CATEGORY#')
by chulett
Tue Jan 26, 2010 4:51 pm
Forum: General
Topic: Converting Special Characters in Datastage
Replies: 3
Views: 12030

You need to determine exactly what this character is. Get yourself a hex editor (many free ones out there) and use that to find the hex value, then we'll see just how special it really is. :wink:
by chulett
Tue Jan 26, 2010 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00060: deadlock detected while waiting for resourc
Replies: 3
Views: 2190

A quick google for that Oracle error will let you know what the issue is as it is well documented out there. Simplest solution would be to run the job on one node only.
by chulett
Tue Jan 26, 2010 4:07 pm
Forum: General
Topic: DSD.BCIOpenR call to SQLNumResultCols failed
Replies: 5
Views: 3743

(sotto voce) wasn't talking to you
by chulett
Tue Jan 26, 2010 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can I attach Current date as file name
Replies: 4
Views: 2464

This has been asked and answered a ton here. Do an exact search for "current date" and you'll find several such posts in the results.
by chulett
Tue Jan 26, 2010 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading and Writing to same sequential file
Replies: 5
Views: 2605

What help do you need? You cannot write back to the same file you are reading from, doesn't matter what tool we're talking about. Think about what you are asking it to do when overwriting the target.