Search found 1015 matches

by Mike
Tue May 09, 2017 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Rejected data columns in to reject file using RCP
Replies: 8
Views: 7218

How did you look at your reject file?

Mike
by Mike
Tue May 09, 2017 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "orchadmin copy" command failing
Replies: 5
Views: 3946

Sounds potentially like that old varied behavior with datasets sometimes storing varchar with fixed sizes. Maybe orchadmin copy defaults to that behavior. You could try setting the environment variable that controls the behavior. Raise the issue with your support provider. You could always create a ...
by Mike
Fri Apr 28, 2017 7:57 am
Forum: General
Topic: Permission denied
Replies: 1
Views: 2198

Check the system requirements for your specific version of Information Server and then try it with a supported browser.

I haven't checked in quite a while, but IE and Firefox used to be the only browsers supported. And even specific versions of those were required.

Mike
by Mike
Tue Apr 25, 2017 8:36 pm
Forum: General
Topic: Datastage to informatica Migration
Replies: 8
Views: 5003

Good advice from Craig as usual and particularly valuable for your scenario since he has expertise in both tools. I've always been a firm believer that once you've chosen one of the top enterprise ETL tools that it's a fool's game to switch. Mr. Client, you're going to spend all of this big $$$ on a...
by Mike
Tue Apr 25, 2017 7:29 am
Forum: General
Topic: Change Capture stage is inactive
Replies: 2
Views: 2854

If you have the Data Quality bundle for Information Server, then you will only have access to the DataStage core. Most of the special purpose stages will not be available to you.

Verify your Information Server bundle.

Mike
by Mike
Mon Apr 24, 2017 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job compile issue
Replies: 8
Views: 7986

With something like this I would suspect some potential metadata corruption causing the issue. Are you doing a regular compile on your recompile or are you doing a force compile? See if the error repeats each time with a force compile. If you haven't already, export the job, delete it, and then reim...
by Mike
Fri Apr 21, 2017 1:06 pm
Forum: General
Topic: Modify the length of a field in all jobs in a project
Replies: 4
Views: 3281

Craig's very detailed explanation is exactly how I would approach it. Also be aware that you will miss cases where the column gets mapped to a different name and that other column also needs its size adjusted. Lots of risk. You'll have to regression test it all and fix anything that your mass update...
by Mike
Tue Apr 18, 2017 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup with a Like Operator
Replies: 4
Views: 4872

Is it always a single starting letter?

If yes, do 2 lookups: 1) full string, and 2) first character.

You could make the second lookup conditional on not finding a match with the full string.

Mike
by Mike
Tue Apr 18, 2017 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partial records are loaded while joining
Replies: 2
Views: 2882

If you are using a join stage, check your link order. Your source dataset should provide the data for the left link and your reference dataset should provide the data for the right link Your results are indicative of having them backwards.

Mike
by Mike
Mon Apr 17, 2017 3:39 pm
Forum: General
Topic: Command stage output
Replies: 7
Views: 4676

Since you seem to be out of ideas...

I wouldn't be running Windows commands even on a Windows installation. Take advantage of the MKS toolkit and run a unix-style find command inside a unix shell.

Mike
by Mike
Sun Apr 16, 2017 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I set the lookup stage adding an OR as Condition
Replies: 3
Views: 7640

2 distinct lookup keys means 2 lookups: Lookup1 -- reject link --> Lookup 2 -- reject link --> Additional Processing | | | success link | success link | | Trash Trash Since you want to drop your matches, you would use the reject links for continued processing. Mike
by Mike
Wed Mar 29, 2017 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File - Scratchdisk allocation
Replies: 4
Views: 2978

Try putting your ramdisk into its own non-default pool.

Mike
by Mike
Fri Mar 24, 2017 4:25 pm
Forum: General
Topic: ExecuteSQL function within User Variable activity
Replies: 10
Views: 8220

Scroll up and read Craig's first reply in the thread. That pretty much sums up what you would need to do.

Mike
by Mike
Thu Mar 16, 2017 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp_from_string with microseconds in Modify Stage
Replies: 7
Views: 5815

I went back and reread your original post... and took note that your output was a parallel dataset. In my quick test job, I just used a peek stage after the modify. I substituted a dataset and the microseconds disappeared. :shock: So I think we have a repeatable bug with modify output to a dataset. ...
by Mike
Thu Mar 16, 2017 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp_from_string with microseconds in Modify Stage
Replies: 7
Views: 5815

I just whipped up a quick test job and am getting the expected microseconds. Here is my modify spec: OUTPUT_VALUE = timestamp_from_string["%yyyy%mm%dd %hh:%nn:%ss.6"] (INPUT_VALUE) My OUTPUT_VALUE is defined as a timestamp with the Microseconds extended property and my INPUT_VALUE is defin...