Search found 42189 matches

by chulett
Sat May 14, 2011 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running SQL Query
Replies: 10
Views: 5005

I don't get the impression that the "2000 values" are the issue here but rather the source data they would be used to extract. And managing a view might be troublesome seeing as how the list of values is "varying in nature". I'm assuming there is a privacy issue here, PHI or PII ...
by chulett
Sat May 14, 2011 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameter to sql statement in OracleEnterprise stage
Replies: 2
Views: 1666

Have you not used job parameters yet? They are typically enclosed in hash / pound signs when referenced, so:

WHERE BA.col3 = SA.col3
AND MP.col2 LIKE '#SampleTable#'

Where "SampleTable" is the name of your parameter. That's the basics, let's start there and see if it helps.
by chulett
Fri May 13, 2011 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: validate a char or varchar input string as numeric digits
Replies: 3
Views: 2552

It removes all numeric digits from the string and then compares the result to an empty string. If there is more than that left, it's not valid.
by chulett
Fri May 13, 2011 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view content of &PH& directory
Replies: 4
Views: 1999

Redirection:

ls \&PH\& > YourFile

For the Administrator, search here for COMO ON (and OFF) and all will be revealed.
by chulett
Fri May 13, 2011 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort when reject row detected
Replies: 2
Views: 1784

Make sure you are setting the Abort value in the reject link itself to abort after 1 row has gone down it, don't run the job with a warning limit of 1.
by chulett
Fri May 13, 2011 11:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading huge file into multiple files..
Replies: 8
Views: 2291

FYI - Some versions of grep have a 'count' option so there's no need for that pipe to "wc -l".
by chulett
Fri May 13, 2011 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id '35612396'
Replies: 17
Views: 9943

Then you are not at the command line, which means logged in at the O/S level. You are still trying to run this from TCL or the Administrator client. Don't.
by chulett
Fri May 13, 2011 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading huge file into multiple files..
Replies: 8
Views: 2291

Don't cat the file to grep, just grep it. And try putting single quotes around that you are grepping for.
by chulett
Fri May 13, 2011 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Google Geocoding in Data Stage
Replies: 3
Views: 3548

That's true, you'd need to use the Java Pack for that. Could have sworn I've used a Google geocoding service in another life, though....
by chulett
Fri May 13, 2011 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id '35612396'
Replies: 17
Views: 9943

A) You need to run it from the command line, not TCL.
B) Do not include the "Creating file DeclDet1, executing command " verbiage, just the command itself. :?
by chulett
Fri May 13, 2011 6:48 am
Forum: General
Topic: DataStage application id missing in datastage credential map
Replies: 1
Views: 1471

Suggest you contact your official support provider for that one.
by chulett
Fri May 13, 2011 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deadlock while inserting and updating
Replies: 5
Views: 8491

You should also look at your partitioning, 'Auto' is not your friend at times like this. Typically one would hash partition over the key(s) used in the target.
by chulett
Fri May 13, 2011 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Google Geocoding in Data Stage
Replies: 3
Views: 3548

One of the "Web Services" stages - client or transformer. Detailed in the Web Services Pack Guide pdf.