Search found 53125 matches

by ray.wurlod
Thu Mar 29, 2007 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deadlock detected while waiting for resource
Replies: 8
Views: 3462

Are you attempting to write to the table while still selecting from the same table? This can lead to a self-deadlatch situation.
by ray.wurlod
Thu Mar 29, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decode function
Replies: 5
Views: 3042

:? Why DateToString()? There's nothing in the (implied) original specification that specifies a string type to be output - everything there suggests that the output column should be of type Date.
by ray.wurlod
Thu Mar 29, 2007 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file outputs Twice the number of rows it has !
Replies: 7
Views: 1477

Is there a before/after stage/job subroutine that copies the file into place before the job moves a second set of records to it. What are the link row counts reported? You chose not to reveal this vital piece of information. In the parallel job it might occur, for example, if you used Entire partiti...
by ray.wurlod
Thu Mar 29, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Sever version Installation on Aix
Replies: 5
Views: 1870

What's reported in the install.log file?
by ray.wurlod
Thu Mar 29, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup Hash files
Replies: 9
Views: 2294

Will the indexes are also preserved if we backup the hash file by simply copying it from its source directory? Thanks in advance for the reply. Thanks, Pavan. Indexes will NOT be preserved. By default a hashed file does not have any indexes, so that's not a problem. If you have created index(es) yo...
by ray.wurlod
Thu Mar 29, 2007 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SPT oracle or ODBC?
Replies: 9
Views: 2892

vpauls wrote:Yes I have and I can when importing table metadata, but when trying to import stored procedure definitions it wants to have a dns and it isn't provided from the server.

/Elin

Thanks for your answer!!

Do you mean DNS (domain name server) or DSN (data source name)?
by ray.wurlod
Thu Mar 29, 2007 3:17 pm
Forum: General
Topic: SQL Server 2005 64bit ODBC Connection
Replies: 7
Views: 2909

I can sense a DataStage (ODBC stage) enhancement request coming on. Who'd like to be first? There's a forum here for exactly that - all posts are forwarded to IBM, and we can guarantee that they are looked at there.
by ray.wurlod
Thu Mar 29, 2007 3:15 pm
Forum: General
Topic: Link Count
Replies: 27
Views: 10932

:roll:
by ray.wurlod
Thu Mar 29, 2007 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decode function
Replies: 5
Views: 3042

Check for null first. There is no ElsIf and there is no End If. Generate null using the SetNull() function - there is no "NULL constant".

Code: Select all

If IsNull(job.empl_status) Then job.effdt Else If job.empl_status = 'D' Then pers.dt_of_death Else SetNull()
by ray.wurlod
Thu Mar 29, 2007 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_FileExportOperator unable to export record: Record large
Replies: 11
Views: 3058

Is the target column TIMESTAMP(6) ? Does the date format string for this column in your record schema include ".6" at the end?
by ray.wurlod
Thu Mar 29, 2007 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Add Months to a Date
Replies: 9
Views: 6440

There's nothing out of the box. Design your algorithm (incorporating your business rules, such as what happens if the date is January 31 and you add one month) and create a routine. Or get a database query to perform it.
by ray.wurlod
Thu Mar 29, 2007 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype warnings from oracle!
Replies: 13
Views: 4772

The "why" is that, when Oracle is interrogated as to data types, it returns DECIMAL(38,10) for unbounded NUMBER types.
by ray.wurlod
Thu Mar 29, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cryptic error when compiling sequence
Replies: 1
Views: 1169

Did you search the forum? Some of the compilation of a job sequence takes place on the client machine. You may not have write permission there.
by ray.wurlod
Thu Mar 29, 2007 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC connection Error
Replies: 2
Views: 1446

Welcome aboard. :D As far as Oracle is concerned, a DataStage job is just another client application. If the diagnosis is "connection dead" the only thing you can do is find out why. The Oracle driver has been successfully invoked by DataStage - you can tell by the square-bracketed entries in the er...
by ray.wurlod
Thu Mar 29, 2007 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler : Why use it.. and how to handle warnings
Replies: 20
Views: 6895

Why not just run this particular job with a warning limit of 1?