Search found 53125 matches

by ray.wurlod
Fri Sep 19, 2008 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MySQL ODBC Connection on AIX 5.3
Replies: 5
Views: 4730

What driver have you specified for the particular DSN?
by ray.wurlod
Fri Sep 19, 2008 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while writing data to the Table
Replies: 2
Views: 931

1) You are relying on an implicit conversion from string to decimal, and are being alerted to this fact. Use explicit conversion to avoid the warning. 2) You have specified XXX_ID as a key in the sort-merge collection algorithm but that field does not exist in the record schema of the inbound record...
by ray.wurlod
Fri Sep 19, 2008 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read Mainframe file using FTP stage
Replies: 3
Views: 2069

This may not be it but there are three quote characters in

Code: Select all

'FTP://PORT\'MF File Name' 
by ray.wurlod
Fri Sep 19, 2008 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Warnings while populating sequential files
Replies: 15
Views: 4582

Make both the input field and the output field Nullable. This is the right thing to do if they're going to have null in them.
by ray.wurlod
Fri Sep 19, 2008 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete Multiple Datasets
Replies: 5
Views: 2342

Typically the descriptor (*.ds) files are not stored on the resource disks - the pathnames on the resource disk(s) are stored within the descriptor files.
by ray.wurlod
Fri Sep 19, 2008 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation error in transformer
Replies: 2
Views: 1827

The first error (signalled by ##E) is "This field was not found: Link_SKG_Xfm".
by ray.wurlod
Fri Sep 19, 2008 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working with excel
Replies: 11
Views: 3423

xch2005 wrote:In addition to previous post, if I remember correclty the input excel needs to have only 1 sheet.

Thanks

That is not the case if you use ODBC. You create a DSN to point to the workbook; each worksheet is a "table" within that DSN.
by ray.wurlod
Fri Sep 19, 2008 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Listing Stages From Executable Of A DataStage Job
Replies: 8
Views: 4030

You'd need a loop in the UNIX script to access each project in turn, and to install the DataStage BASIC routine in each of those projects or globally. As a general rule global cataloging is not a preferred approach in DataStage but it is, however, supported. Details can be found in the DataStage BAS...
by ray.wurlod
Fri Sep 19, 2008 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when I try to access the Information Server
Replies: 0
Views: 799

There is only one solution, the obvious one. You need to be granted the appropriate credentials for Information Server. Are you really sure that the user ID you are using has Information Server administrator role? Is there a second (spare) Information Server administrator user that you can use?
by ray.wurlod
Fri Sep 19, 2008 3:34 pm
Forum: General
Topic: String to Date conversion--Missing values on mainframe file
Replies: 2
Views: 1170

" " is not a valid date, which is why DataStage is handling it like that. You need to intercept the spaces value and replace it with some valid date, such as 4000-01-01, or declare spaces as the Null Value for that field, before converting the data type.
by ray.wurlod
Fri Sep 19, 2008 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with KeyChange column
Replies: 1
Views: 979

Setting this property causes an additional column (called "keyChange" by default, though you can choose any name for the column; the column name is the value of the property) to be output from the stage. You are propagating this additional column through to your database table, but no column called ...
by ray.wurlod
Fri Sep 19, 2008 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restrict The users of Datastage to particular project
Replies: 3
Views: 1320

Create operating system groups, one per project. This is a Windows administration task. Add users to groups. This is also a Windows administration task. Protect the project directories and all file system objects therein such that its group has all access and others have read-only or none. This can ...
by ray.wurlod
Fri Sep 19, 2008 3:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling sql query from unix
Replies: 11
Views: 2856

Then search the forum for how to use BCI functions and get them to have to pay for a DataDirect driver!
by ray.wurlod
Fri Sep 19, 2008 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create unique sequence no with reference to primary
Replies: 9
Views: 2033

Use a different sequence name. The sequence name is the argument to this routine. You are using a sequence named "1" in both jobs. Don't.
by ray.wurlod
Fri Sep 19, 2008 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Stored Proc
Replies: 7
Views: 2030

(Thinks: I can has cheezburger.) Define "performance" in an ETL context. In what meaningful way can the adjective "heavy" be applied to what you have defined? A system DSN is required because a user DSN is only accessible to whomever creates it. In any case, there is no such differentiation on UNIX;...