Search found 206 matches

by rwierdsm
Fri Feb 03, 2006 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: moving text data type from one table to another.
Replies: 4
Views: 1916

Re: moving text data type from one table to another.

Just came across this thread yesterday on how to remove non visible characters.

Maybe it will spark some ideas.

viewtopic.php?t=98175

Rob W
by rwierdsm
Fri Feb 03, 2006 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Record Types
Replies: 1
Views: 1080

Re: Multiple Record Types

We are doing something similar here at our site. Our Universal Copy software takes care of translating from EBCIDIC to ASCII and puts the proper CRLF in the data. We created COBOL copy books to describe the various embedded record types and imported these definitions into the CFF stage. The first th...
by rwierdsm
Thu Feb 02, 2006 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to prevent a column from being updated in an Insert/Upda
Replies: 8
Views: 4588

Re: How to prevent a column from being updated in an Insert/

The approach I've used in the past is to only insert/update the update date in the main sql. Put an update statement in the 'after' subroutine part of the OCI or ODBC or whatever, setting the insert_date to today's date where the insert date is null. This should only update the row you've just inser...
by rwierdsm
Thu Feb 02, 2006 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cannot get exclusive access to executable job --Job may be
Replies: 5
Views: 1364

Re: cannot get exclusive access to executable job --Job may

You have a monitor open in Director. Close the monitor and try to compile your job again in Designer.

pukars4u wrote:Hai I am getting the below error when i am trying to compile a batch job

can anyone help me


cannot get exclusive access to executable job batch: Batch job --Job may be monitored
by rwierdsm
Thu Feb 02, 2006 9:25 am
Forum: Site/Forum
Topic: My Charter Membership!!
Replies: 19
Views: 15455

C'mon, I live in Canada. I'm talking Tim's here, coffee that grows hair on your chest.
by rwierdsm
Wed Feb 01, 2006 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORacle table lookup
Replies: 3
Views: 1175

Re: ORacle table lookup

I've seen this error when the input key value does not line up with ':1" value in the query, i.e. you are passing the bind variable in the 4th port, but have defined your variable as the first port (:1). Make sure they all line up, better still, ensure your key values are at the top of the list...
by rwierdsm
Wed Feb 01, 2006 5:20 pm
Forum: Site/Forum
Topic: My Charter Membership!!
Replies: 19
Views: 15455

...and you know what I discovered! Having 'Charter Member' beside my name plus $1.25 will buy me a small coffee!
by rwierdsm
Wed Feb 01, 2006 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Value field of selection criteria of CFF
Replies: 8
Views: 3005

I ran into the same issue some time ago. After asking around to a number of colleagues, including an Ascential (IBM) consultant, I still did not have an answer. As my data did not turn out to have any 'other' values, I got away with not having to impliment this logic. Sounds like this is a good feat...
by rwierdsm
Wed Feb 01, 2006 7:19 am
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 19994

Re: i am ok with you ,you said very nicely

Well, needless to say, I did pay. I can't think of a better resource anywhere (other than Greg Sherry and Peter Paton who sit close to me :D) for DataStage help than Dsxchange. You'd probably gladly pay $50 for a good book on DS and, ultimately, this site provides at least as much utility as a good ...
by rwierdsm
Wed Feb 01, 2006 7:13 am
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 19994

Re: i am ok with you ,you said very nicely

I paid, I joined. If my $50 helps keep things running and gives me full access to all the top posters replies I'm WAY ahead. I'm not a newbie, in fact I think I'm pretty good. Not in the top group but I get by. $50 is nothing compared to the time I've saved, the answers I've found and the knowledge...
by rwierdsm
Tue Jan 31, 2006 3:31 pm
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 16649

gateleys - I understand gmorey's point of view and actions, but this new system needs some time to be understood correctly before it is condemned. Getting a qualified answer is certainly worth $50 - just compute your hourly wage and see how many minutes of your work that works out to. I think it wi...
by rwierdsm
Tue Jan 31, 2006 3:29 pm
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 16649

Re: new poll

gmorey wrote:I've created a poll about the new Premium Content here.

*Admin edit link removed*

Hmmm......

Curiouser and Curiouser.....
by rwierdsm
Tue Jan 10, 2006 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal field rounding
Replies: 3
Views: 1115

In the end, our bug turned out to be a TeraData issue. The developer working on this piece of code loaded the input file into TeraData using a method other than DataStage and observed the same issues. Bug was bumped to NCR support, who determined that TeraData was loading and storing the data correc...
by rwierdsm
Fri Jan 06, 2006 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal field rounding
Replies: 3
Views: 1115

Initially, we were just taking the incoming varchar field and sticking it in a Dec(18,0) field. Later we did some monkeying around with the functions I mentioned above. We'll have a look at the stuff you are suggesting, I think it will generate a couple of new ideas. Thanks for your input, Arnd. Rob W
by rwierdsm
Thu Jan 05, 2006 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal field rounding
Replies: 3
Views: 1115

Decimal field rounding

We are trying to load data into a TeraData Dec(18,0) field using a MultiLoad stage. The source data is formated as text. We perform some deduplication and validation upstream and convert the field in question from varchar( 18 ) to Dec(18,0). When loading into TeraData, any number that is bigger than...