Search found 42189 matches

by chulett
Sat Jul 18, 2009 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 7
Views: 2316

You're not forced to update it but you do need to use it, typically in the 'wher'e clause if nothing else.

:idea: If you don't need a column in the DML, don't send it to the stage.
by chulett
Sat Jul 18, 2009 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format problem
Replies: 2
Views: 1001

I would try stripping all of the non-numeric values and then check for zero:

Code: Select all

If DIGITS(Link.DateField) = 0 Then @NULL Else Link.DateField
(assuming no other transformations are needed)
by chulett
Fri Jul 17, 2009 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Set stage; view data
Replies: 5
Views: 2288

First, it is "orchadmin" and secondly you've have to give us some idea what "not working" means before anyone could help you without just guessing what might be wrong.
by chulett
Fri Jul 17, 2009 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The runLocally() of the operator failed.
Replies: 1
Views: 2511

Please post the other error messages logged along with it, they generally don't happen all on their lonesome.
by chulett
Fri Jul 17, 2009 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot import server routine DS 8.0 in DS 8.1
Replies: 25
Views: 10758

Why not simply search for it? Use the search functionality if you are on Windows or the 'find' command from UNIX, it shouldn't be all that hard to turn it up.
by chulett
Fri Jul 17, 2009 5:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with dsjob command...
Replies: 7
Views: 2447

Are you sure that is the return status? Or does it simply echo that to the screen while the job is running? I'd also be curious exactly how you are capturing the status into your $Run_Stat_Val variable - can you post that segment of the script?
by chulett
Fri Jul 17, 2009 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wide Character error
Replies: 3
Views: 1250

Odd... don't recall "wide character" ever being something posted here before. Not sure if this helps at all but there's a stub wiki article on the subject.
by chulett
Fri Jul 17, 2009 1:06 pm
Forum: General
Topic: Using Lookups And Error Reporting
Replies: 12
Views: 3460

Well... you might be surprised how many people would rather come here and ask than read any of the documentation or try to work something out on their own, so just wanted to get that out of the way since it seemed from your post like you might not have been thru the docs yet. And it's not like I use...
by chulett
Fri Jul 17, 2009 10:21 am
Forum: General
Topic: Aggregation
Replies: 8
Views: 1709

Explain your job design - basically list the stages used and what role each is playing in the job.
by chulett
Fri Jul 17, 2009 10:19 am
Forum: General
Topic: Using Lookups And Error Reporting
Replies: 12
Views: 3460

It would behoove you greatly to read the documentation that ships with the product, specifically the Parallel Job Developer's Guide pdf. There is a chapter on the Lookup Stage there as well as the related Join Stage and Merge Stage. You need to understand how they work in order to be successful desi...
by chulett
Fri Jul 17, 2009 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change job parameter at runtime
Replies: 12
Views: 3917

:!: Please start your own post rather than 'hijack' someone else's.
by chulett
Fri Jul 17, 2009 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a new user
Replies: 3
Views: 1020

Before 8.x users are just normal O/S users so create them there. Roles are handled via the Administrator using the 'Permissions' tab.
by chulett
Fri Jul 17, 2009 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 7
Views: 2316

The ODBC stage is the only stage that allows that, AFAIK.
by chulett
Fri Jul 17, 2009 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format not supported
Replies: 11
Views: 3708

If the stage generates the SQL then yes, it will already use TO_CHAR. And you need it, one way or the other, to make this work properly. Lastly you can't use TO_TIMESTAMP as you're not dealing with an Oracle TIMESTAMP column, but rather a DATE - which just so happens to carry a time portion in Orac...
by chulett
Fri Jul 17, 2009 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error logging
Replies: 9
Views: 2050

That just looks like a Pivot to me, why not perform the pivot of using the maximum number of output columns and then trim null results post pivot?