Search found 53125 matches

by ray.wurlod
Thu Jan 17, 2008 4:13 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Compare flat files using Audit Stage
Replies: 2
Views: 2483

It's probably easier to do in a DataStage parallel job, using one of the change detection/capture stages.

AuditStage, like ProfileStage, is really about determining what's in a file, not about comparing two files, until you get to analyzing for potential foreign key relationships.
by ray.wurlod
Thu Jan 17, 2008 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get tne name of Aborted Job in a Sequence
Replies: 5
Views: 1830

The job sequence's log summary will include the exit status of each job invoked from the job sequence. If you have a hierarchy of job sequences you may need a more complex script using either iterative or recursive techniques to search the entire tree of control.
by ray.wurlod
Thu Jan 17, 2008 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion From flat file to Sql Server table
Replies: 16
Views: 5031

You are connecting to SQL Server through ODBC. Dates must be in ODBC-legal format. However, your error message appears to indicate that you are using some kind of function in the SQL. This is not permissible for INSERT, only for SELECT. Can you post your SQL statement as well as the exact error mess...
by ray.wurlod
Thu Jan 17, 2008 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to create hash file
Replies: 6
Views: 1373

It's "hashed" file, not "hash" file. What's changed since it worked? ("Nothing" is not the correct answer.) Is/was the disk full at the time? Does the user have appropriate permission to all the directories in the path, all the way from the root of the file system? Once you find what changed, don't ...
by ray.wurlod
Thu Jan 17, 2008 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Two Different Server Installations on Same Unix Box
Replies: 14
Views: 4244

In summary: 1. Projects are completely independent of each other. 2. Operating system permissions (in combination with DataStage roles) can specify who can do what in projects. That's all you need. You do not need the hassle of -itag installations, which is how multiple versions of the server are ru...
by ray.wurlod
Thu Jan 17, 2008 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: aggrigating the data
Replies: 9
Views: 1910

You may find it easier to use an ODBC driver for text files and throw an appropriate SQL query at it. SELECT column_list FROM filename T1 WHERE column = (SELECT MAX(column) FROM filename T2 WHERE T1.key = T2.key); Or you could use two streams, as others have suggested, or two jobs. T...
by ray.wurlod
Thu Jan 17, 2008 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating HASH Files
Replies: 9
Views: 2252

It's "hashed" file, not "hash" file. Because of the mechanism that locates records in a hashed file it is impossible (unless the hashed file is damaged) to have duplicate keys in a hashed file. Please check that your key is defined only on these six columns. What you are seeing is possible if there ...
by ray.wurlod
Thu Jan 17, 2008 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to check file on a Unix box from our ETL server till...
Replies: 8
Views: 2502

Is there to be an upper limit on how long you are prepared to wait? On the other UNIX machine, does the application write the file to the other directory as it's being processed, or only once it's fully processed? If it's the former then you still have a problem determining that processing is finish...
by ray.wurlod
Thu Jan 17, 2008 3:38 pm
Forum: General
Topic: XML Attributes
Replies: 4
Views: 1676

Which XML stage?
by ray.wurlod
Thu Jan 17, 2008 3:37 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Loading tilde delimited text file to PSDB
Replies: 1
Views: 1766

Can't you import "via ODBC"? Your ODBC DSN definition can specify tilde as the delimiter character.
by ray.wurlod
Thu Jan 17, 2008 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in if then else coding in transformer
Replies: 10
Views: 3168

Don't neglect to get the data types correct. From your example I assume that name (the input column) is a string and the output column is an integer of some kind. Therefore the comparisons will need quoted constants, and the default value must be an integer. If InLink.Name = "a" Then 1 Els...
by ray.wurlod
Thu Jan 17, 2008 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 4
Views: 1458

Anything you want to do with an input column in the Transformer (or Modify) stage you need explicitly to name that column in the stage input link.
by ray.wurlod
Thu Jan 17, 2008 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HELP ME - Internal error
Replies: 9
Views: 2359

You seem to have very many nodes in your configuration file; perhaps there is a timing issue getting all the nodes to respond in time to the licensing score. Involve your support provider.
by ray.wurlod
Thu Jan 17, 2008 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data not getting loaded into target table
Replies: 2
Views: 1119

Is it the Transformer or the SQL Server stage? To answer this question lose the SQL Server stage and replace it with a Sequential File stage.