Search found 53125 matches

by ray.wurlod
Wed Nov 23, 2011 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying duplicate entries in a dataset
Replies: 5
Views: 1381

pandeesh wrote:Is there any command line option available for finding the duplicates in dataset?
No.
by ray.wurlod
Wed Nov 23, 2011 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error reading EBCDIC file using CFF stage.
Replies: 6
Views: 1805

Have you set the "A margin" (location of level 01 item) correctly when importing the COBOL FD?

Are you totally certain that the COBOL FD you have is the one that describes the data you have?
by ray.wurlod
Tue Nov 22, 2011 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date
Replies: 11
Views: 5165

Use %m and %d designators for flexible format.
by ray.wurlod
Tue Nov 22, 2011 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert Multiple rows into a oracle table
Replies: 2
Views: 1957

What is the primary key of the employee_sports table?
by ray.wurlod
Tue Nov 22, 2011 6:20 pm
Forum: General
Topic: dsrpcd process not start after invoking the startup command
Replies: 4
Views: 2203

Weird! Error code 2 (E_FNTF) is "file not found". I wonder how $PS1 could affect that?

Anyway, thanks for the posting, even from one of the old players!
by ray.wurlod
Tue Nov 22, 2011 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of string to Timestamp
Replies: 5
Views: 7913

You've omitted the space at the beginning of the constant time portion.
by ray.wurlod
Tue Nov 22, 2011 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 basics for a DataStage Developer ????
Replies: 1
Views: 987

In DB2 you need to connect to the database you intend to use.

Most IBM products have an Information Center; DB2 is no exception. You can find out all you need to know and more there.
by ray.wurlod
Tue Nov 22, 2011 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter passing to sequential file stage
Replies: 1
Views: 1020

It has substituted the parameter reference. Look at the "job starting" event in the job log to determine what value was actually passed to this parameter.
by ray.wurlod
Tue Nov 22, 2011 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex sorting and setting first, last sort column flag
Replies: 6
Views: 2061

There is a technique shown in the version 7 Advanced DataStage class that uses three consecutive Sort stages to accomplish detection of the last record in a group. I'll need to track it down and post details.
by ray.wurlod
Tue Nov 22, 2011 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Duplicates
Replies: 8
Views: 3266

Show us what you tried. This is readily do-able; particularly easily if the data have been processed through a Sort stage that generates a Key Change column (assuming you're using a parallel job, which is not certain). You can, of course, do the key change test using stage variables. Use more stage ...
by ray.wurlod
Tue Nov 22, 2011 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to split a delimited string into rows?
Replies: 9
Views: 13532

You could also convert the commas to value marks (@VM) and write to a hashed file, then read from the hashed file normalized on the multi-valued column.
by ray.wurlod
Tue Nov 22, 2011 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying duplicate entries in a dataset
Replies: 5
Views: 1381

If they're in there, they're in there. You could include a Remove Duplicates stage in the stream from which the Data Set is read. Preferably you should avoid writing duplicates into the Data Set in the first place, if you don't want them.
by ray.wurlod
Tue Nov 22, 2011 2:04 pm
Forum: General
Topic: Sequence hangs while sending mail.
Replies: 2
Views: 928

How large is the attachment? It might simply be waiting while the file is being uploaded to the mail server.
by ray.wurlod
Tue Nov 22, 2011 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring replacement
Replies: 7
Views: 2811

If it's only " -" and "- " there's a tolerably ugly solution involving nested If..Then..Else and Index() functions. But one which would meet your clients' stated requirements.

<rant>Resist stupid requirements!</rant>