Search found 42189 matches

by chulett
Fri Aug 22, 2008 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data extracting issue from oracle
Replies: 2
Views: 828

The preference would be to use the orchdbutil command to import the table metadata as that is the most accurate way for PX.
by chulett
Fri Aug 22, 2008 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stop datastage service
Replies: 12
Views: 8155

Nowhere in DataStage, that would need to be set by a UNIX Admin.
by chulett
Fri Aug 22, 2008 11:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reverse Lookup
Replies: 11
Views: 4479

Still not showing up clearly. Code tags, peoples, code tags maintain whitespace. And use Preview to check before posting. table A | | | table B ---------lookup stage -______matched record(file1) | | | Unmatched records (file2)
by chulett
Fri Aug 22, 2008 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting header, body and footer into 3 tables
Replies: 4
Views: 1542

If you read the file as one long string field, can you recogize each type of record easily? Say by checking the first few bytes for 'HDR' or 'FTR' (etc).
by chulett
Fri Aug 22, 2008 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no errors, no warnings, but logic doesnot works
Replies: 13
Views: 2889

Put your expression in a 'test harness' (a small routine) then test to ensure you are getting what you think you are getting from it:

Code: Select all

Ans=Oconv(Iconv(Arg1,'D MY[A3,2]'),'D-YMD')
by chulett
Fri Aug 22, 2008 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 6375

There is no 'date format' in an Oracle database, per se, unless you are attempting to match the NLS_DATE format. Please post the sql and clarify how the DATE column is defined in the job itself.
by chulett
Fri Aug 22, 2008 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from Excel File
Replies: 14
Views: 5871

Why did you feel the need to change the driver name? That surely is the path to the Dark Side...
by chulett
Fri Aug 22, 2008 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 3 character abbrevation for month in date
Replies: 8
Views: 1913

Ok, good. Saves me from going into my lecture on how Oracle dates are not stored in any format and what they look like when selected is up to you or your tool of choice. :wink:
by chulett
Fri Aug 22, 2008 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 3 character abbrevation for month in date
Replies: 8
Views: 1913

:? My example showed that. "MON" = upper-case three character month, "mon" = lower-case. Pick whichever you like.
by chulett
Fri Aug 22, 2008 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Saving Datastage Logs
Replies: 7
Views: 1930

Search the forums for either 'ETLStats' or 'DSGetLog', both should reveal the bajillion conversations we've had on this subject.
by chulett
Fri Aug 22, 2008 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Saving Datastage Logs
Replies: 7
Views: 1930

Ray? Is that you?
by chulett
Fri Aug 22, 2008 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from Excel File
Replies: 14
Views: 5871

The post you linked to explains what to do when your DataStage server is on Windows. For UNIX? Different story - you use the [Text] driver as far as I know. Make a copy of it to a new name and try that.
by chulett
Fri Aug 22, 2008 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date from File name...
Replies: 1
Views: 874

Would need more information on how you are using the date, but basically you can substring the 'yymmdd' portion out of the filename, then use functions to convert it, if need be.
by chulett
Fri Aug 22, 2008 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 3 character abbrevation for month in date
Replies: 8
Views: 1913

Code: Select all

select to_char(sysdate,'DD-MON-YYYY') from dual
by chulett
Fri Aug 22, 2008 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to reject the records
Replies: 3
Views: 987

:? Please don't start a new post for something you've already asked about:

http://www.dsxchange.com/viewtopic.php?p=297394

You should have just asked for a clarification there.