Search found 358 matches

by loveojha2
Mon Oct 24, 2005 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job process id
Replies: 4
Views: 2481

Hi Kim,

There can be many instances uvsh.exe (on windows) be seen in task manager, are all these separate processes or these are child processes of a master process? and when we say process ID of a job, which instance of uvsh.exe we are talking about?

Thanks in advance.
by loveojha2
Mon Oct 24, 2005 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any idea to filter the tables when importing them
Replies: 5
Views: 1268

When you import through import wizard, click Filter,

It will give you the choice to filter the tables for import by their names or owner names (and some other options for synonyms and sys tables).
by loveojha2
Mon Oct 24, 2005 2:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityHashLookup calling
Replies: 10
Views: 3055

" Its is not returning Null, it is just telling you the contents of the record keyed by 449100 and since you don't have anything in the record it is telling you nothing. To understand it, use a Hased file which is having columns other than the key column and you will understand what is it doin...
by loveojha2
Mon Oct 24, 2005 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityHashLookup calling
Replies: 10
Views: 3055

Its is not returning Null, it is just telling you the contents of the record keyed by 449100 and since you don't have anything in the record it is telling you nothing. To understand it, use a Hased file which is having columns other than the key column and you will understand what is it doing? :wink...
by loveojha2
Mon Oct 24, 2005 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the CLOB datatype of Oracle
Replies: 5
Views: 1452

Thank you very much Chulett.
by loveojha2
Fri Oct 21, 2005 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the CLOB datatype of Oracle
Replies: 5
Views: 1452

Moreover, I have tried the same thing on more than two machines (two different Oracle databases).
by loveojha2
Fri Oct 21, 2005 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the CLOB datatype of Oracle
Replies: 5
Views: 1452

That message has nothing whatsoever to do with the fact that you're casting a CLOB as a VarChar. Read the error message again. The Oracle server is busy at the time. Something preceding hasn't finished when the next call is made through the OCI. Have your Oracle DBA help you to trace what requests ...
by loveojha2
Fri Oct 21, 2005 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Basic to handle file
Replies: 11
Views: 3502

$IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF print "hdsjk" OpenSeq "c:\filename.txt" To FileVar Else Call DSLogWarn("This Program","Message") AbcLen=0 Addit=0 FileLine1='' Loop ReadSeq FileLine From FileVar ELSE Ans='1' if FileLine1=FileLine Th...
by loveojha2
Thu Oct 20, 2005 10:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the CLOB datatype of Oracle
Replies: 5
Views: 1452

Regarding the CLOB datatype of Oracle

Hi All, I am facing some problem with Oracle's CLOB datatype. For a COLB datatype column in the Oracle when I specify Varchar(2000) in server job it gives me error ORA-24909: call in progress. Current operation cancelled The description of the Error (from a site) ORA-24909: call in progress. Current...
by loveojha2
Thu Oct 20, 2005 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI plugin error-ACESS DENIED
Replies: 4
Views: 1637

Try compiling/running the same job with administrator.
by loveojha2
Wed Oct 19, 2005 12:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sharedcontainers
Replies: 6
Views: 2994

The Shared Containers are the reuseable components (that you create, pretty similar to a server job). You have it common across the project. From the Help Shared containers comprise groups of stages and links and are stored in the Repository like DataStage jobs. When you insert a shared container in...
by loveojha2
Mon Oct 17, 2005 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unusual Behaviour with String Data
Replies: 3
Views: 1194

The target table is also showing 'abc'. You need to truncate the data explicitly, for example Code: Left(InLink.Col1,2) I suspect what you're seeing results from C string handling; in C a string is an array of characters, and all array indexes are zero based. So you're seeing Col1[0], Col1[1] and Co...
by loveojha2
Mon Oct 17, 2005 10:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unusual Behaviour with String Data
Replies: 3
Views: 1194

Unusual Behaviour with String Data

Hi All, I have a server job which is transferring data from source to target. My Source and Target table are like this Src_Table Col1 Char(10) Tgt_Table Col1 Char(10) In my source stage I am specifying column defintion as Col1 Char(2) And in target Col1 Char(10) In between the Source and target stag...
by loveojha2
Fri Oct 14, 2005 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear the contents of a Hash file.
Replies: 11
Views: 4152

Use CLEAR.FILE filename :lol:
by loveojha2
Fri Oct 14, 2005 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear the contents of a Hash file.
Replies: 11
Views: 4152

The Command is
CLEARFILE filename
the complete syntax is
CLEARFILE [file.variable] [ON ERROR statements] [LOCKED statements]