Search found 53125 matches

by ray.wurlod
Wed Nov 05, 2008 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to connect Data Stage Client
Replies: 11
Views: 4412

The OP was on version 6. Is this true for all of you?
by ray.wurlod
Wed Nov 05, 2008 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect to the server from client
Replies: 4
Views: 2690

Is NLS enabled? You are using a code page on your Windows client that does not correspond to that used on the DataStage server. Try setting each to 1252 and working from there.
by ray.wurlod
Wed Nov 05, 2008 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to delete matching record from table with no primary
Replies: 2
Views: 1051

You need to mark columns A, B and C as Key in your job design. "Key" in this context does not mean primary key - it means "search key" and gets the parameter markers to bind to the WHERE clause.
by ray.wurlod
Wed Nov 05, 2008 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trace Job Deletion
Replies: 9
Views: 2689

The DS.AUDIT table keeps track of the most recent time that an object was deleted, and by whom. Of course, it may be that nothing has been deleted and you can't see them because the indexing needs rebuilding.
by ray.wurlod
Wed Nov 05, 2008 7:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Populate date as Timestamp
Replies: 2
Views: 1124

Why do you want to do "other than"? It's a perfectly valid approach. Anyway, one "other than" approach is to decompose your source date using substring techniques then re-assemble it with concatenation, adding the time portion.
by ray.wurlod
Wed Nov 05, 2008 7:11 am
Forum: General
Topic: Can we use regular expression in DataStage job??
Replies: 5
Views: 11843

Filter stage has limited regexp capability.
by ray.wurlod
Tue Nov 04, 2008 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need real time scenario
Replies: 11
Views: 7887

DataStage can be configured to support real-time applications, by exposing a job as a web service through ISD. An always-running, multi-instance job is capable of quickly processing the data sent to it by the caller (and sending data back to the caller). There is probably insufficient "encryption in...
by ray.wurlod
Tue Nov 04, 2008 8:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Soft Delete
Replies: 5
Views: 2067

There's only one output but it contains three fields: the first input row (as a subrecord), the second input (as a subrecord) and the difference result.
by ray.wurlod
Tue Nov 04, 2008 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Soft Delete
Replies: 5
Views: 2067

So use Compare stage, which outputs both inputs.
by ray.wurlod
Tue Nov 04, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2 calls to Oracle function in PX
Replies: 9
Views: 2907

You can't. Each node operates independently. You need to re-think your design and/or your parallelism.
by ray.wurlod
Tue Nov 04, 2008 4:06 pm
Forum: IBM QualityStage
Topic: Quality Stage License
Replies: 4
Views: 2127

Check in Information Server Web Console. You can find out on the Licensing screen what products you have licensed.
by ray.wurlod
Tue Nov 04, 2008 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Generator
Replies: 6
Views: 1633

Maybe yes. Randomly. Depends on the number of rows and the seed used for generating the "random" numbers.
by ray.wurlod
Tue Nov 04, 2008 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Soft Delete
Replies: 5
Views: 2067

Why aren't you using one of the change detection stages (Change Capture, Difference or Compare stage)?
by ray.wurlod
Tue Nov 04, 2008 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Job importing using different id
Replies: 3
Views: 1410

You need to run DS.CHECKER to tidy up the partially-removed job before you can proceed with an override-import. And you will need exclusive access to the project to do so.
by ray.wurlod
Tue Nov 04, 2008 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling missing data
Replies: 3
Views: 1487

1. Get the file provider to guarantee fixed width. What you have isn't.

2. Read as single VarChar(400) field and parse inside your job.