Search found 42189 matches

by chulett
Sat Jul 23, 2011 1:51 pm
Forum: General
Topic: Changes to sequences ignored after import and compile
Replies: 17
Views: 7539

Have you looked at the Sequence jobs in Production to see if your actual changes made it there? How exactly are you exporting/importing your jobs? A 'normal' import from the GUI automatically deletes the original job before importing the replacement so it doesn't surprise me that doing that manually...
by chulett
Fri Jul 22, 2011 11:28 pm
Forum: General
Topic: implemented user status in PX job
Replies: 1
Views: 776

Sequence jobs have no issues running combinations of Server and Parallel jobs, that is their function. And I don't see any need for the Nested Condition stage (unless there is an actual 'condition' being checked in it) as $UserStatus can be passed directly between the two Job Activity stages.
by chulett
Fri Jul 22, 2011 11:20 pm
Forum: General
Topic: Passing commandoutput as a parameter in to the parameter set
Replies: 14
Views: 5567

You got exactly what you coded when you simply appended the new value to the current file. In order to "update" the values file, you'd need to read it and then write it out with that specific record replaced with the new value to a new filename and then replace the original file with the n...
by chulett
Fri Jul 22, 2011 2:23 pm
Forum: General
Topic: Passing values between jobs (routines) in a sequence
Replies: 4
Views: 1622

Three steps:

1. Do an exact search for DSSetUserStatus
2. Read thru the matching posts
3. Implement!

:wink:
by chulett
Fri Jul 22, 2011 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read multile .csv files in Sequential stage
Replies: 11
Views: 4591

While 201107* may work in UNIX, it won't match files in Windows without specifying an extension as well - meaning 201107*.* would be what you should try. I don't think it will help but can't hurt to try. Now, I'm curious - why the UNC path? Are you looking for files on a remote server? I wonder if t...
by chulett
Fri Jul 22, 2011 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Close Command & Open Command
Replies: 2
Views: 1496

Start your own post, give us the gory details of your problem.
by chulett
Fri Jul 22, 2011 8:55 am
Forum: General
Topic: Greenplum ODBC Connection Problem
Replies: 3
Views: 4016

I honestly have no idea but I don't recall having an ODBC name with a space in it, for grins you might want to try a name that doesn't include one.
by chulett
Fri Jul 22, 2011 7:53 am
Forum: General
Topic: Informatica to Datastage migration
Replies: 4
Views: 2256

I'm not sure what kind of information you are looking for. How do you convert any X to Y? You determine what X is doing and you then build the same thing in Y. There's no magic here. Do you have design documents, source to target mappings or just the Informatica mappings to work from? Are you famili...
by chulett
Fri Jul 22, 2011 7:42 am
Forum: General
Topic: Need Datastage Books information
Replies: 3
Views: 2310

For example, this Redbook and/or this one.
by chulett
Thu Jul 21, 2011 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read multile .csv files in Sequential stage
Replies: 11
Views: 4591

Answer the question Ray asked - do you change the method from Specific File to File Pattern when you use the wildcard character?
by chulett
Thu Jul 21, 2011 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem loading Date Fields to DB2 from Oracle
Replies: 6
Views: 6066

The date format required into the target is MM/DD/YYYY The date format in the source is DD-MON-YYYY Just want to point out, for the umpteenth time, that dates do not have a "format". As James noted, all of those are external formats, what you get after you select a date as a string, somet...
by chulett
Thu Jul 21, 2011 2:56 pm
Forum: General
Topic: DSgetLinkinfo
Replies: 2
Views: 1986

You use the function in a BASIC routine and then point it at a finished PX job from a Sequence or the After Job area of the job.
by chulett
Thu Jul 21, 2011 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Infosphere and HL7 format
Replies: 2
Views: 2803

Yes, WebSphere Transformation Extender (the product formerly known as "TX" and "Mercator" before that, which for all I know has a new name now) is a separate purchasable tool. Yes, the XML format should be perfectly digestible by DataStage and perhaps even the "proprietary&q...
by chulett
Thu Jul 21, 2011 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on grouping and selecting the first record
Replies: 7
Views: 1840

Depends of the "this" you are asking about. As Ray noted, you can let the Sort stage add a "Key Change Column" to the data which makes it trivial to know the first record of a group. If you are already sorting the data, it would be a little more efficient to take this path but I ...