Search found 15603 matches

by ArndW
Mon Feb 15, 2010 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Questions regarding Null handling in Stage variables
Replies: 17
Views: 17863

The Parallel Job Developer Guide lists the functions.
by ArndW
Mon Feb 15, 2010 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tricky - Date Field Automatic Conversion wuth RCP Enabled
Replies: 11
Views: 4605

Dates and times are NEVER stored with a format in databases. They are stored in binary form and only converted to a display format when extracted. Your problem is not in the database, but the settings when viewing the data. If you are using SQL to view the data, just use TO_CHAR() function with what...
by ArndW
Mon Feb 15, 2010 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Edition Routine
Replies: 1
Views: 1663

No, stored procedures are in the database and Server code is in the DataStage server engine. You can call stored procedures (or pretty much anything on the command line) from Server routines.
by ArndW
Mon Feb 15, 2010 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sendmail error
Replies: 8
Views: 2973

Remove DataStage from the equation by manually doing a sendmail from the command line - does it still create an error or does it work?
by ArndW
Mon Feb 15, 2010 3:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code page - SQL Server DataType issue
Replies: 7
Views: 1992

IBM 01142 is an EBCDIC code page. I was not aware of SQL Server running on an EBCDIC machine. This is perhaps the source of your problems.
by ArndW
Mon Feb 15, 2010 2:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code page - SQL Server DataType issue
Replies: 7
Views: 1992

SORRY! I looked at the time and ignored the date portion.

So what is IBM 00142?
by ArndW
Mon Feb 15, 2010 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error :- Design schema field: L cannot be unbounded
Replies: 5
Views: 6817

VarChar(32) is a bounded field, Varchar() is an unbounded one.
by ArndW
Mon Feb 15, 2010 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code page - SQL Server DataType issue
Replies: 7
Views: 1992

Rumu - you waited a whole hour before bumping your thread, what paid-for organization has response times like that? DataStage is volunteer and most members are in the USA, where it is still 2AM on Monday morning.

What page is IBM 00142, all I found in Google was a reference to EBCDIC
by ArndW
Sat Feb 13, 2010 5:50 am
Forum: General
Topic: Strange errors accessing Administrator
Replies: 15
Views: 14003

I suspect permission issues.

What user are you using for DataStage on the AIX server? login as that user to a command line and see what the permissions are in the $DSHOME directory.
by ArndW
Sat Feb 13, 2010 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job elapsed time
Replies: 5
Views: 2477

Of course there is a possibility. I would not use stage in that server job, but put all the BASIC code in the Job Control section

The DS routines required are DSGetProjectInfo(), DSAttachJob(), DSDetachJob(), DSGetJobInfo().
by ArndW
Fri Feb 12, 2010 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding String to Date Conversion
Replies: 10
Views: 3099

I don't think you have understood the issue. Date and Time field have no format. None. When you wish to view a Date or Time the displaying program sets the format. So, once again, what program are you using to display the value? sqlplus? DataStage? Oracle SQLDeveloper? TOAD?
by ArndW
Fri Feb 12, 2010 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error Msg - An unidentified error has occured
Replies: 7
Views: 2857

change the import for C to have only 1 column, does it compile?
by ArndW
Fri Feb 12, 2010 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding String to Date Conversion
Replies: 10
Views: 3099

What program are you using to display the date? The date setting for that program need to be changed to use the correct format.
by ArndW
Fri Feb 12, 2010 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error Msg - An unidentified error has occured
Replies: 7
Views: 2857

In that case, post more details please. Remove the Column import stage from the job flow - does it compile? If yes, add a column import and slowly start adding fields, compiling each time until the error occurs.
by ArndW
Fri Feb 12, 2010 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow performance reading from Oracle 10g source
Replies: 3
Views: 1407

Write an SQL script that does a bulk load and execute outside of DataStage and compare runtimes. I am pretty confident that they won't run in similar times - again, look for a cause outside of DS first.