Search found 7201 matches

by admin
Wed Oct 24, 2001 9:43 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Process abort with a warning
Replies: 4
Views: 754

Greetings, Im new to this list, so a little late with a reply but the last piece of advice isnt quite correct. The Aggregator only expects the input rows to be sorted if *you* tell it they are sorted. You tell it by filling in the Sort column. This lets the stage know the data is already sorted in t...
by admin
Wed Oct 24, 2001 8:48 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Prefected rows
Replies: 1
Views: 363

Prefected rows

Hi all, I am using a DB2 Stage as a lookup stage(dont know why) to load to the same table. In transformer it looks for Key Columns(Key and FromDate) and the Criteria to load the table is: if ID is Null then load. Table A structure is: Id Integer Key char(8) FromDate Date Lookup Table A | Sourcedata-...
by admin
Wed Oct 24, 2001 3:36 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Executing a select statement
Replies: 2
Views: 668

Executing a select statement

Hi all,

I want to make a routine that returns the value of a database sequence.

Where i can find the functions to do that?
There is any function that executes a select statement?


Thanks in advance,

NP
by admin
Wed Oct 24, 2001 12:27 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: trigger warnings
Replies: 0
Views: 538

trigger warnings

Hi all, In order to avoid a lot of complexity in our datastage programs we have implemented database triggers (before/after insert and update logic). Now we have the problem that these triggers create a lot of warnings (there is no way to avoid this). Is there a way to tell datastage director to ign...
by admin
Wed Oct 24, 2001 12:00 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: UniVerse/SQL: Failed to establish internal local connection.
Replies: 2
Views: 845

Hi,

Has someone been editing the uvodbc.config file in a server project directory, or in the ServerEngine directory? Ive seen similar when people have changed the entry.

Regards

- Chris Thornton
by admin
Wed Oct 24, 2001 11:42 am
Forum: Archive of DataStage Users@Oliver.com
Topic: UniVerse/SQL: Failed to establish internal local connection.
Replies: 2
Views: 845

UniVerse/SQL: Failed to establish internal local connection.

Situation we are having is on two servers running Datastage (One currently Production, the other DR) Message we got tonight on the production server was when the first datastage job ran. UniVerse/SQL: Failed to establish internal local connection. We have also found if we tryto run a Universe sessio...
by admin
Wed Oct 24, 2001 8:18 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Transaction logging
Replies: 5
Views: 932

Thank you Ray. I assume that I wont have control over the transactions then. Datastage will pass the record to Redbrick which will either accept or reject the record - end of story. Pity, it will make life a bit more difficult when a job aborts and I have to restart the job where it left off ..... T...
by admin
Wed Oct 24, 2001 7:47 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Transaction logging
Replies: 5
Views: 932

Red Brick Decision Server is a database designed from the ground up for data warehousing. As such, it does not have row level locking and does not have transactions. Therefore it does not have the concept of commit. In a sense, every INSERT, UPDATE or DELETE is auto-commit, with no choice. Most user...
by admin
Wed Oct 24, 2001 6:30 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Transaction logging
Replies: 5
Views: 932

We are writing our data to Redbrick (datawarehouse). Im not very familiar with Redbrick yet, so Ill have to find out if I can set an option like this on the DB. Thanks Dirk -----Original Message----- From: Jason Mulvin [mailto:jmulvin@fuse.net] Sent: Monday, October 22, 2001 9:38 PM To: datastage-us...
by admin
Wed Oct 24, 2001 3:12 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Passing Parameters from UNIX shell script
Replies: 5
Views: 3839

I tried this out and if yourre quick you can catch the parameters being passed on the DSRunJob call; using the ps command: eg. psmith 14100 14098 1 10:59:52 ? 0:00 phantom DSD.RUN jtwhDimCustLoad 0/50 pDBPasswd=secret: pSourceServ -----Original Message----- From: Riccardo Tani [mailto:rtani@datamat....
by admin
Wed Oct 24, 2001 12:34 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Unix env variables
Replies: 5
Views: 1026

Fixed.....Works a dream ! -----Original Message----- From: Ray Wurlod [mailto:ray.wurlod@Informix.Com] Sent: Wednesday, 24 October 2001 10:29 AM To: datastage-users@oliver.com Subject: RE: Unix env variables It may be that there is a line feed on the end of the captured output. This will have been t...
by admin
Wed Oct 24, 2001 12:28 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Unix env variables
Replies: 5
Views: 1026

It may be that there is a line feed on the end of the captured output. This will have been translated to a "field mark" by CAPTURING. (I forgot about this gotcha.) Try: EXECUTE SH -c "echo $HOME" CAPTURING EnvHOME Call DSSetParam(hJob, "MyHomeDir", Trim(Convert(@FM,"",EnvHOME))) -----Original Messag...
by admin
Wed Oct 24, 2001 12:14 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Unix env variables
Replies: 5
Views: 1026

Thanks for that Ray...it seems to work. Im having problems with the DSSetParam in that it returns -4 - not happy with the value being set - even though the Parameter is type String. -----Original Message----- From: Ray Wurlod [mailto:ray.wurlod@Informix.Com] Sent: Tuesday, 23 October 2001 2:53 PM To...
by admin
Tue Oct 23, 2001 10:10 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: runaway batches
Replies: 4
Views: 1207

It now behoves you to analyse WHY your batches "never end". Do all the controlled jobs complete successfully? What else does your batch do? Can you code a timeout check near the end of the batch, that checks the status of all controlled jobs, and ends properly if they have all finished? (That it doe...
by admin
Tue Oct 23, 2001 8:11 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: runaway batches
Replies: 4
Views: 1207

That worked.. Thanks!!!! jason -----Original Message----- From: Doris Zammit [mailto:Doris.Zammit@oit.state.nj.us] Sent: Tuesday, October 23, 2001 3:11 PM To: datastage-users@oliver.com Subject: Re: runaway batches Hi Jason, Ive had a similar experience with a never ending job run. What I do is sele...