Search found 53125 matches

by ray.wurlod
Wed Feb 07, 2007 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Stage with zero input link
Replies: 14
Views: 3567

BINDING is what is required.
by ray.wurlod
Wed Feb 07, 2007 7:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I-descriptor was not compiled
Replies: 15
Views: 6258

Luckily for you, the ASCII code for "/" is 47 and the ASCII code for "0" is 48, so that your filter (WHERE @ID >= 0) will also exclude the control records.
by ray.wurlod
Wed Feb 07, 2007 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert sybase timestamp to Oracl timestamp
Replies: 19
Views: 7735

... but you could adapt it to your own requirements.
by ray.wurlod
Wed Feb 07, 2007 1:28 pm
Forum: General
Topic: Future of Red Brick
Replies: 5
Views: 1763

Future of Red Brick

This is the IBM message regarding Red Brick: We plan to ACTIVELY sell and support Red Brick V6.3 into the foreseeable future. We have NO plans to EOL Red Brick. We are continuing to see strong demands for the Red Brick product, and we are committed to supporting our customers on Red Brick for as lon...
by ray.wurlod
Wed Feb 07, 2007 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Manipulating and managing the Template project
Replies: 6
Views: 2283

It's not documented anywhere. The project template is - effectively - a regular project but without a VOC. Thus there's no way you can get into the DataStage environment in the template "project". You could, of course, create a pointer to the template's DS_ROUTINES table from another project, and th...
by ray.wurlod
Wed Feb 07, 2007 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Link from a Sequential file
Replies: 10
Views: 6100

Are the fields nullable? If so, how have you set the Null Field Value property? The empty fields may be being read as NULL. What data are being imported into the job?
by ray.wurlod
Wed Feb 07, 2007 1:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: deleted hash files and errors occurs
Replies: 6
Views: 1347

The corresponding D_* entries - but only the corresponding ones - do have to be deleted. You also need to delete the entries from the VOC table, which you must do - very carefully - with an SQL query. DELETE FROM VOC WHERE ID = '<<Hashed File name>>'; Next time use the DELETE.FILE command. It will s...
by ray.wurlod
Wed Feb 07, 2007 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: custom SQL in ODBC
Replies: 11
Views: 2566

The SQL may not work because the OP is not using Oracle. When posting SQL please indicate whether it is database-specific. Only Oracle prescribes outer joins in the fashion indicated.
by ray.wurlod
Wed Feb 07, 2007 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.UVOpen error
Replies: 9
Views: 4267

For a few cents per day you can read premium posts and help to pay for the bandwidth charges that DSXchange incurs.
by ray.wurlod
Wed Feb 07, 2007 4:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in - Sequence of records processed by DataStage
Replies: 10
Views: 3389

No database will allow you to control the order in which rows are stored in a table.

What you are asking for is simply not permitted.
by ray.wurlod
Wed Feb 07, 2007 4:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get out the Null row in a file
Replies: 20
Views: 4886

Easier to process with a filter command in the Sequential File stage that reads the file. Use sed or awk or some other command that allows you to remove empty lines from a file.
by ray.wurlod
Wed Feb 07, 2007 4:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN not connected
Replies: 2
Views: 979

Welcome aboard. :D Please post the contents of each of the files you mention, plus the exact and complete error message that you receive when you try to connect. Have you attempted to use any diagnostic tools, such as DS.CONNECT within DataStage or the testing utilities within branded_odbc, where th...
by ray.wurlod
Wed Feb 07, 2007 4:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I-descriptor was not compiled
Replies: 15
Views: 6258

That only works in RetrieVe, not in DataStage SQL. What Arnd is referring to is that VOC contains D-type field descriptors F1 through F9, that can be used to refer to any field (from 1 to 9) in a record. You could certainly do this by specifying RT_LOGnnnn USING DICT VOC in your FROM clause; however...
by ray.wurlod
Wed Feb 07, 2007 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in - Sequence of records processed by DataStage
Replies: 10
Views: 3389

What you want is exactly what DataStage does. The target database table, however, stores the records in whatever order it wants to. This is a fundamental property of relational databases; that storage order is irrelevant. It's not a DataStage issue. To get sorted data out of a table, the rules state...
by ray.wurlod
Wed Feb 07, 2007 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check column sorted
Replies: 7
Views: 1794

Use stage variables in a Transformer stage to compare each row with the previous one in that column. If the direction of difference changes, then the answer is NO.