Search found 7201 matches

by admin
Tue Jul 22, 2003 9:13 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: sequence generator
Replies: 19
Views: 46140

First off, are you sure your sequence generator query is the source of your slowdown? There are *so* many things that can affect performance... and I would suspect something else if performance is deteriorating drastically. Oracle sequences are great for situations where you need concurrency, but if...
by admin
Tue Jul 22, 2003 9:07 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Re: Sequence generator
Replies: 7
Views: 1211

Re: Sequence generator

This is a topic for an orphaned message.
by admin
Tue Jul 22, 2003 9:07 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Re: Sequence generator
Replies: 7
Views: 1211

KeyMgtGetNextValue requires a hash file and that is not possible in the case that I have. With regards, Wilcy On Wed, 23 Jul 2003 Tony Stark wrote : >Depending on your needs, DataStage has its own >Sequences that you can use. See the KeyMgtGetNextValue >transform under Transforms->sdk->KeyMgt > >Hop...
by admin
Tue Jul 22, 2003 9:04 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: sequence generator
Replies: 19
Views: 46140

1. What is the network speed between the DataStage server and the Oracle server? I have found that increasing the network speed from 100Mb to 1Gb has a more dramatic impact on lookups than on straight data transfers (I think it is more about the round trip time for the lookup than bandwidth). 2. Loo...
by admin
Tue Jul 22, 2003 8:49 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: sequence generator
Replies: 19
Views: 46140

Depending on your needs, DataStage has its own Sequences that you can use. See the KeyMgtGetNextValue transform under Transforms->sdk->KeyMgt Hope this helps, Tony --- Wilcy William wrote: > Hi, > I am using a ORAOCI8 stage with the > following query > SELECT SEQ_ERROR_TABLE.NEXTVAL DUMMY FROM DUAL ...
by admin
Tue Jul 22, 2003 8:23 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: Sequence generator
Replies: 0
Views: 435

Sequence generator

Hi, I am using a ORAOCI8 stage with the following query SELECT SEQ_ERROR_TABLE.NEXTVAL DUMMY FROM DUAL as a sequence generator. The performance of the job has deteriorated drastically from 3000 rows/sec to 300 rows/sec. Any suggestions to improve the performance? I am using DataStage 6.0 on UNIX ser...
by admin
Tue Jul 22, 2003 8:07 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: PX Error
Replies: 1
Views: 618

PX Error

does anyone knows what this error is? I can figure it out. its a PX error. mzrt_inv_xref_insert.DSLink34: Error when checking composite operator: Describe failed because of missing column for FIN_INV_I_SEQ The column is not missing. its just not part of the column to be moved to the next stage. it w...
by admin
Tue Jul 22, 2003 12:13 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: HashLookupRoutine with Variable Arguments
Replies: 5
Views: 767

Hi Tunde, Could you create an argument called something like "VariableArgument" and then pass it a delimited string of values, such as SomeArg1=Value,SomeArg2=Value, ? Then in your custom routine use a loop with the Field method to parse out the variables with their values until no more fields exist...
by admin
Tue Jul 22, 2003 9:25 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Job wont stop running
Replies: 2
Views: 668

Hi Kasia, Ill try this when it happens again, I compiled the job and I am running the jobs again. Thanks. Wim. -----Oorspronkelijk bericht----- Van: Kasia Lewicka [mailto:katarzyna.lewicka@cgey.com] Verzonden: dinsdag 22 juli 2003 11:22 Aan: datastage-users@oliver.com Onderwerp: Re: Job wont stop ru...
by admin
Tue Jul 22, 2003 9:22 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Job wont stop running
Replies: 2
Views: 668

The process is also still running? (check it with the command "ps -ef | grep DSD" if you are on Unix) If not (process finished), try to execute "Clear Status File" in the DSDirector for TranslationJob) Kasia At 22/07/2003 10:57, you wrote: >Hi, > >Several times weve faced the problem that a job wont...
by admin
Tue Jul 22, 2003 8:57 am
Forum: Archive of DataStage Users@Oliver.com
Topic: Job wont stop running
Replies: 2
Views: 668

Job wont stop running

Hi, Several times weve faced the problem that a job wont stop running. Weve got a construction like this: Mainjob FileJob Validatejob TranslationJob The translationjob keeps on running while the other jobs are finished. I cant look into the joblog because the error cant attacht to job log occurs. It...
by admin
Mon Jul 21, 2003 10:39 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: HashLookupRoutine with Variable Arguments
Replies: 5
Views: 767

Its been brought to my attention off line that there are some functions that have a variable number of arguments (for example TRIM, EREPLACE). Let me modify my previous assertion. DataStage BASIC (as currently shipped) does not allow one to write routines with a variable number of arguments. -- ____...
by admin
Mon Jul 21, 2003 10:21 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: HashLookupRoutine with Variable Arguments
Replies: 5
Views: 767

The DataStage BASIC language does not provide for variable number of arguments. ----- Original Message ----- From: "Babatunde.Ebohon" Date: Mon, 21 Jul 2003 07:40:40 -0500 To: Subject: HashLookupRoutine with Variable Arguments > > Hi all, > Has any produced a routine with variable number of argument...
by admin
Mon Jul 21, 2003 5:28 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: HashLookupRoutine with Variable Arguments
Replies: 5
Views: 767

Of course you could send in a delimited string, count the number of arguments and then process accordingly, but why would you, as you would have to have an exact order etc to args... Kenneth Bland wrote: >You cannot do this on Server Edition routines. > >--- "Babatunde.Ebohon" >wrote: > > >>Hi all, ...
by admin
Mon Jul 21, 2003 2:09 pm
Forum: Archive of DataStage Users@Oliver.com
Topic: problem running jobs (userrights problem?)
Replies: 2
Views: 629

The import is done through the manager? You have to log on with UserB before importing! Check what are the job owners in project A and project B - should be different (userA and userB) Kasia At 21/07/2003 11:37, you wrote: >Hi, > >Weve got the following problem: we have defined two datastage project...