Search found 53125 matches

by ray.wurlod
Thu Sep 21, 2006 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RESIZE issue for hashed file
Replies: 1
Views: 1504

You were too late. You had to resize it before it reached 2GB. Now it is in a corrupted state, so that must be fixed first. If you can afford the time to reload the hashed file completely, the quickest way is to clear the hashed file, then resize it while empty. Otherwise, those backward link errors...
by ray.wurlod
Thu Sep 21, 2006 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 5547

Well, that certainly looks like Max(F3) from where I'm sitting!
by ray.wurlod
Thu Sep 21, 2006 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stages that automatically drop columns.
Replies: 9
Views: 2073

You are misguided about discarded input columns consuming resources in a Transformer stage. A Copy stage can drop columns at no cost.
by ray.wurlod
Thu Sep 21, 2006 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage
Replies: 1
Views: 1118

Because the table name contains a space, the entire table name or column name must be quoted. If one were to follow the ODBC standard, which was written by Microsoft, one would use double quote characters, for example "TableA"."purchase order" - if that doesn't work, because Microsoft does not follo...
by ray.wurlod
Thu Sep 21, 2006 2:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using #DSJobStartDate# variable in the Modify stage
Replies: 1
Views: 1886

It is not possible. The Modify stage does not support the use of job parameters.
by ray.wurlod
Thu Sep 21, 2006 2:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to overwrite seqfile through basic command.
Replies: 3
Views: 1088

Search the forum for a routine called OpenSequentialFile and use that. It handles all possibilities.

The actual statement you require is WEOFSEQ, but there are other possibilities you haven't even thought about thus far.
by ray.wurlod
Thu Sep 21, 2006 2:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No proper output while running routine
Replies: 4
Views: 1352

hhh wrote:Have updated my code with code tags and comments.

Oh, no you haven't!
by ray.wurlod
Thu Sep 21, 2006 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Client not able to connect to DataStage server
Replies: 7
Views: 8156

That's because the command you needed was dsjob, not dsadmin. There is no such command as dsadmin.
by ray.wurlod
Thu Sep 21, 2006 2:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DICTVOC
Replies: 6
Views: 1426

My previous post does explain briefly. Invest the less than $1 per week in a premium membership.
by ray.wurlod
Thu Sep 21, 2006 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with BIT as SQL type
Replies: 1
Views: 762

The bit datatype uses the most significant bit in its byte. This is the sign bit. In a twos-complement machine the bit pattern 10000000 represents -1. There's nothing you can do about that. Why not apply the Abs() function?
by ray.wurlod
Thu Sep 21, 2006 2:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence generator
Replies: 10
Views: 3633

Hi, you mentioned a database sequence, how would you use database sequence in datastage? Do NOT provide a key value from the job. Use user-defined SQL. INSERT INTO tablename (keycol, col1, col2, col3) VALUES (seqname.NEXTVAL, :1, :2, :3) There are three columns defined in the DataSt...
by ray.wurlod
Thu Sep 21, 2006 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dsjbob syntax - please help
Replies: 2
Views: 1094

Welcome aboard.

The dsjob command is fully documented in both the Server Job Developer's Guide and the Parallel Job Advanced Developer's Guide.

Look there or search in the forum.
by ray.wurlod
Wed Sep 20, 2006 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling Time through stages
Replies: 3
Views: 1126

If this is truly time, then the maximum legal value is 23:59:59. If you need 30:00:00 you're really talking about "interval". There is nothing out of the box in DataStage for working with intervals but, because times are stored internally as seconds, then Mod() and Div() functions can be used to gen...
by ray.wurlod
Wed Sep 20, 2006 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence generator
Replies: 10
Views: 3633

The most efficient, if you want to start from 1 for each run, is to use the system variable @OUTROWNUM, since it is keeping that count in any case. However, if you want a genuine sequence (starting again from where it left off), then either the SDK key management routines as mentioned, or a database...
by ray.wurlod
Wed Sep 20, 2006 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No proper output while running routine
Replies: 4
Views: 1352

Your code is confused. For example, consider what this code fragment does if the pathname exists. What did you want it to do? OpenSeq PathName To FileVar Else CREATE FileVar ELSE ABORT WriteSeq InfoMessage TO FileVar ELSE STOP End CloseSeq FileVar Do you REALLY want to work with files in the root di...