Search found 42189 matches

by chulett
Fri Mar 18, 2005 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: question regding if then else
Replies: 12
Views: 7123

:shock: Doh! You so right... too much in a hurry.
by chulett
Fri Mar 18, 2005 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: question regding if then else
Replies: 12
Views: 7123

Sure... more like this is how I do it:

Code: Select all

if <condition> then
  <expression1>
  <expression2>
else
  <expression3>
  <expression4>
end
by chulett
Fri Mar 18, 2005 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting a specific rollback segment
Replies: 8
Views: 816

That's why I suggested the "alter session set rollback segment" route. Should work fine in the before-sql area.
by chulett
Fri Mar 18, 2005 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing a sequential file and treating like a table
Replies: 11
Views: 5010

I'll have a play with your other suggestions to see what I come up with but the data volumes will be large for the initial population of the Warehouse (50GB) but quite small on a nightly basis so hashed files may be too slow. Cool. Certainly couldn't hurt to 'play' and at the very least expand your...
by chulett
Fri Mar 18, 2005 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting a specific rollback segment
Replies: 8
Views: 816

No, you should be able to issue specific 'alter session' commands in the before-sql area to use specific rollback segments if that's really what you need to do.
by chulett
Fri Mar 18, 2005 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing a sequential file and treating like a table
Replies: 11
Views: 5010

Have any other Sybase users come up against these restrictions re stored procedures/flat files as tables and if so how have you got around them ? Please don't take this the wrong way, but these are not so much 'restrictions' as a lack of understanding on your part. The only way you can treat this f...
by chulett
Fri Mar 18, 2005 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call subroutine in after-job subroutine
Replies: 9
Views: 3276

No. Stage variables are local variables and don't exist outside of the stage they are defined in.
by chulett
Fri Mar 18, 2005 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 13
Views: 3692

Are you sure that you've applied the SP2 patch from Ascential? When you say something like this, it doesn't sound like it: I'm just had all of the available SP2 patches installed but unfortunately this hasn't made any difference. Or: I finally got a PC built with Service Pack 1 and all its patches i...
by chulett
Fri Mar 18, 2005 1:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call subroutine in after-job subroutine
Replies: 9
Views: 3276

Job Parameters are (in almost all cases) enclosed in pound signs or 'hashes' ( # ) when referenced. The colon is used for concatenation. So, if you simply wanted to refer to a job parameter called DATA, you would do it like this: #DATA# If you wanted to include it as part of a string in a command, t...
by chulett
Fri Mar 18, 2005 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to check whether specified database is working...
Replies: 4
Views: 760

Do you mean automatically, perhaps as part of a job sequence? Or is this a general question?

In general, you can Validate a job rather than Run it to see if it can connect to all of the various source and target stages in the job.
by chulett
Fri Mar 18, 2005 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incomplete Column
Replies: 4
Views: 1101

Use replace option and use replacement value of something like "XXXXYYYYYZZZ" or something very noticeable and unlikely to appear in the missing column. Then, put a constraint on the following transformer to place the rows that have that column value in your reject file. And here I was thinking, wh...
by chulett
Fri Mar 18, 2005 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call subroutine in after-job subroutine
Replies: 9
Views: 3276

No, the funny thing is... "after job" is still during the run-time of the job, so job parameters can be used by them. The job hasn't finished running until any after job routines finish as well. :wink:
by chulett
Fri Mar 18, 2005 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the just get the incremental load from source
Replies: 9
Views: 1225

You can also get a product from Ascential that does log scraping from the Oracle transaction logs which can make delta processing a lot easier. Vincent, is Ascential still selling this? I was under the impression that they may not be maintaining it and (thus) may no longer be offering it for sale, ...
by chulett
Thu Mar 17, 2005 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing a sequential file and treating like a table
Replies: 11
Views: 5010

But does any of this help the OP treat a flat file like a table? :?

I don't think so and assume my advice regarding how to proceed still stands - in addition to yours, of course. :wink:
by chulett
Thu Mar 17, 2005 1:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Links Collection
Replies: 10
Views: 2021

The Dynamic Relational Stage, new in 7.5, something which allows you to use a single stage to connect to "any" relational source.