Search found 166 matches

by thumsup9
Tue Sep 12, 2006 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert into Dynamic RDBMS stage
Replies: 2
Views: 1505

Diya,

stage variables might help here. Can you please make your question a little clear.
by thumsup9
Tue Sep 12, 2006 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exporting from Manager - "Program Sources" vs. &qu
Replies: 1
Views: 845

Greg,

There is some very good information on this if you search for Program Source in the forum.

Check this

viewtopic.php?t=91554&highlight=Program+Source
by thumsup9
Tue Sep 12, 2006 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial schema
Replies: 4
Views: 3372

I think it will throw a warning saying too many columns in record, but yes you read the record.
by thumsup9
Tue Sep 12, 2006 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 7.5 problem
Replies: 10
Views: 2667

Is the metadata same on both source and target and what properties did you set in the flat file.
by thumsup9
Mon Sep 11, 2006 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date format from flatfile to oracle database
Replies: 13
Views: 6344

Thanks for the response. Hi deepak/Thumsup9, please suggest me which is the exact format D-DMY or D-MDY and i also checked there are no spaces in the function. i tried for both,but it is not loading any data. please help me . Thanks in advance Vardhan, Whats the format on the database. Can you plea...
by thumsup9
Mon Sep 11, 2006 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date format from flatfile to oracle database
Replies: 13
Views: 6344

It should be D-DMY
by thumsup9
Mon Sep 11, 2006 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date format from flatfile to oracle database
Replies: 13
Views: 6344

thumsup9 wrote:Try this:

oconv(iconv(Linkname.columnname, "D-MDY[2,2,4]"), "D-YMD[4,2,2]"):"00:00:00"
Sorry, you said the format was DD-MM-YYYY, check this

oconv(iconv(Linkname.columnname, 'D-MDY[2,2,4]'), 'D-YMD[4,2,2]') : ' 00:00:00'
by thumsup9
Mon Sep 11, 2006 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date format from flatfile to oracle database
Replies: 13
Views: 6344

Try this:

oconv(iconv(Linkname.columnname, "D-MDY[2,2,4]"), "D-YMD[4,2,2]"):"00:00:00"
by thumsup9
Mon Sep 11, 2006 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with IDOC job with Datastage UserID
Replies: 5
Views: 1887

Can you logon to SAP using your ID. It looks like access issue.
by thumsup9
Mon Sep 11, 2006 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence completed successful even a job aborted status
Replies: 16
Views: 16688

You seem to have used Expression Type as Custom - Conditional. Can you please post the Expression you used. Custom trigger expression: - Process_BILLOMAT.$JobStatus = 2 or Process_BILLOMAT.$JobStatus = 1 Thanks, One way to do this is if Process_BILLOMAT.$JobStatus <> DSJS.RUNOK then send this to No...
by thumsup9
Mon Sep 11, 2006 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence completed successful even a job aborted status
Replies: 16
Views: 16688

You seem to have used Expression Type as Custom - Conditional. Can you please post the Expression you used.
by thumsup9
Mon Sep 11, 2006 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preventing an ftp if file is zero length
Replies: 5
Views: 1566

Re: Preventing an ftp if file is zero length

Hi all, Is there a simple way to pevent an ftp if the file doesn't contain any records? My job is currently creating a zero length file. I know I could write an after script to do this but just wanted to confirm that was the only way. Check it in unix before you run the job. use If condition like I...
by thumsup9
Mon Sep 11, 2006 12:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with SQL Server
Replies: 4
Views: 1487

Using an ODBC enterprise stage. Do you have a DSN. Create a DSN first and then use it on your ODBC stage.
by thumsup9
Mon Sep 11, 2006 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 to Oracle Timestamp conversions
Replies: 5
Views: 3751

You cant use OCONV in Parallel jobs.one way to do this is to do TimestampToString and then StringToTimestamp functions to migrate DB2 timestamp to Oracle Timestamp. StringToTimestamp(TimestampToString(inputdate,%yyyy-%mm-%dd %hh:%nn:%ss),%yyyy-%mm-%dd %hh:%nn:%ss) Check the format of timestamp in Bo...