Search found 53125 matches

by ray.wurlod
Thu Oct 09, 2014 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TXT File with fixed length fields
Replies: 9
Views: 10191

The error message suggests that COL_MDL_ORG is of type VarChar.
by ray.wurlod
Thu Oct 09, 2014 3:43 pm
Forum: General
Topic: New Line character on Windows
Replies: 17
Views: 6010

What command are you using?
by ray.wurlod
Thu Oct 09, 2014 3:41 pm
Forum: General
Topic: Avoid calling sh.exe
Replies: 7
Views: 2702

Track down whether it's you at fault. For example look for ExecSH as a before/after subroutine, look for DSExecute called with "SH" as the shell argument from your routines. If you eliminate these possibilities you have a stronger case to take back to IBM.
by ray.wurlod
Wed Oct 08, 2014 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE reference in SQL File
Replies: 2
Views: 2112

Don't know.

Have you tried it?

My guess would be that it is OK, since the SQL file is simply read to become the SQL Statement property value.
by ray.wurlod
Wed Oct 08, 2014 8:35 pm
Forum: General
Topic: New Line character on Windows
Replies: 17
Views: 6010

In a User Variables activity change the line terminators (now @FM) to commas, so that you now have a comma-delimited list for the StartLoop activity, and remove the final comma so that you don't have an empty final name. Field(Convert(@FM, ",", ExecCommand.$Output), ",", 1, Count...
by ray.wurlod
Wed Oct 08, 2014 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sort stage followed by remove duplicates stage
Replies: 3
Views: 2861

I would partition only by col1, and sort by col1, col2, col3. Sorting by col4 doesn't achieve anything, unless to govern the meaning of First or Last in Remove Duplicates stage. For any given value of col1, all values of col1,col2,col3 will occur on the same partition. Only if there are too few dist...
by ray.wurlod
Wed Oct 08, 2014 3:16 pm
Forum: General
Topic: Multiple conditions in Routine
Replies: 4
Views: 1199

Despite it being a long time, Craig has correctly remembered the "multi-line" or "block" format. The block of statements needs to be terminated with an End statement. You won't be able to run a detached job. I prefer initial capitals to all upper case, though keywords in the BASI...
by ray.wurlod
Wed Oct 08, 2014 3:13 pm
Forum: General
Topic: Avoid calling sh.exe
Replies: 7
Views: 2702

Depends. Why are you calling it?
by ray.wurlod
Tue Oct 07, 2014 3:34 pm
Forum: General
Topic: Sequence - Checkpoints - Restartability
Replies: 7
Views: 2240

An alternative to Craig's most recent suggestion is to make sure that your sub-sequences throw a warning (but do not need to abort). This, too, can be detected upstream (set parent sequences to log a warning if any activity does not finish with a status of OK). If you really want an esoteric solutio...
by ray.wurlod
Mon Oct 06, 2014 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improving a large Join
Replies: 9
Views: 4598

Perhaps, then, the original SQL's join is supported by indexes, a luxury that DataStage does not have (and the reason that DataStage requires inputs to the Join stage to be sorted on the join key).
by ray.wurlod
Mon Oct 06, 2014 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Netezza - What is datatype for select Sum(col) from table
Replies: 2
Views: 2398

A Numeric data type with sufficiently large precision should be adequate. Try dfloat (Double), since this is the largest possible numeric data type, and all numeric data types can be implicitly converted to it. Also try reducing the severity of metadata mismatch reports in any Connector stage that y...
by ray.wurlod
Mon Oct 06, 2014 3:25 pm
Forum: General
Topic: To know the impact of DS8.1, after migrating oracle 12C
Replies: 1
Views: 1211

Oracle 12 is not officially supported for the metadata repository from Information Server version 8.1, primarily because Oracle 12 did not exist when 8.1 was released. You are totally reliant on Oracle's promise of backwards compatibility.
by ray.wurlod
Sun Oct 05, 2014 11:05 pm
Forum: General
Topic: ADMU3011E : Server launched but failed initialization
Replies: 1
Views: 1948

Re: ADMU3011E : Server launched but failed initialization

Appoorva wrote:Do I have to start any other services(like xmeta) prior to this?
Yes, although it should auto-start on boot.

You must also inspect the log files mentioned in the error message.
by ray.wurlod
Thu Oct 02, 2014 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TXT File with fixed length fields
Replies: 9
Views: 10191

If you have any VarChar columns change them to Char.
by ray.wurlod
Thu Oct 02, 2014 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fifo \pipe error
Replies: 10
Views: 10907

Could it be that the multiple instances are all (or some of them) trying to access file \\.\pipe\Application-RT_SC274-App_Splunk_Message.CUSTOMER_NATL at the same time? The operating system only allows one writer at a time.