Search found 15603 matches

by ArndW
Wed Oct 18, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failure: lookups on datasets
Replies: 6
Views: 1503

Re: Job failure: lookups on datasets

I'm not sure, put the path doesn't look good to me. Particularly the 3rd character
ckporter wrote:...
/E=/Ascential/DataStage/Datasets/OUTWARDS_RI_TRANSACTION_NAME.ds.marcw.APHRODITE.0000.0000.0000.10dc.c6f6873b.0000.85ce82bd failed: Not a directory
...
by ArndW
Wed Oct 18, 2006 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing
Replies: 5
Views: 1580

The first one performs only one variable assignment, the second one needs to do 2; so the first will be more efficient. As Ken has stated, they will in their current form give different results.
by ArndW
Wed Oct 18, 2006 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read .dtl files
Replies: 15
Views: 4748

The INDEX() function takes 3 parameters.
by ArndW
Wed Oct 18, 2006 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get Deleted Job ?
Replies: 5
Views: 1111

Krazy used the colloquial method of giving you the bad news. On a technical level - once you have deleted a job the information is permanently removed and is not recoverable apart from restoring a backup .dsx copy, if available.
by ArndW
Wed Oct 18, 2006 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trim the row values
Replies: 10
Views: 2313

If there is never text before the "[" then it is the best solution. Good thinking!
by ArndW
Wed Oct 18, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trim the row values
Replies: 10
Views: 2313

Kris - I was referring to Joyson's response, we ended up posting at about the same time.
by ArndW
Wed Oct 18, 2006 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 510 Phantom 17328
Replies: 1
Views: 761

For some reason the transform compiled code is missing. Try to recompile your job and see if that generates an error or if it can be run afterwards.
by ArndW
Wed Oct 18, 2006 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trim the row values
Replies: 10
Views: 2313

That works, but doesn't cover rows with not "[...]" text. How about IF INDEX(In.Column,'[',1) < INDEX(In.Column,']',1) THEN In.Column[1,INDEX(In.Column,'[',1)-1]:In.Column[INDEX(In.Column,']',1)+1,999] ELSE In.Column If you want to make it handle n-occurrences in a st...
by ArndW
Tue Oct 17, 2006 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dates (Datetime) comparison in Routines
Replies: 10
Views: 2844

You will need to split your string into a date and time portion, then use ICONV to convert both parts seperately. The date is a number-of-days offset while the time is a seconds-since-midnight offset.
by ArndW
Tue Oct 17, 2006 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job abort
Replies: 5
Views: 996

The T30FILES parameter is a DataStage internal value, not a UNIX one. I'm not at a client to ascertain the actual limit, but 500 is not a system limit to T30FILES and can be set much higher.
by ArndW
Tue Oct 17, 2006 1:34 pm
Forum: General
Topic: client and server in data stage
Replies: 2
Views: 2272

The concept of "client and server" is not specific to DataStage. In DataStage you have a server (typically on a UNIX or Windows) to which you attach using clients from a pc - the Designer, Director, Manager or Administrator and perhaps the telnet session into TCL might count as well. The brunt of th...
by ArndW
Tue Oct 17, 2006 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: backup of jobs
Replies: 11
Views: 2442

Sarven, now you might begin to realize why the recommendation is to put all hashed files used by DataStage jobs into a different directory from the projects themselves - there is not automated way to copy all the hashed files and their contents from the project directory. Do the files have some comm...
by ArndW
Tue Oct 17, 2006 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to create new jobs or copy existing jobs
Replies: 6
Views: 1624

The compile has the additional advantage of clearing out log files - one thing that sometimes causes projects to "bloat"
by ArndW
Tue Oct 17, 2006 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataDirect - Excel 2003 Drivers
Replies: 3
Views: 998

You need to talk to the DataDirect people, as it is their driver that needs to understand the new format.
by ArndW
Tue Oct 17, 2006 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic Routine Works, Calling Through Job Hangs
Replies: 2
Views: 724

your SELECT is hanging because the job is still running and is holding a lock on this record. This will not happen if you change your job to do a HASHed file read instead of a SQL SELECT.