Search found 358 matches

by loveojha2
Tue Jul 11, 2006 12:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error
Replies: 11
Views: 2453

Improper data type
As chulett suggested we should first know what the other scenario is doing ?

Is it having any numerical calculation on any of the varchars or chars? (asking because the jobname suggests some kind of calculation involved)
by loveojha2
Tue Jul 11, 2006 12:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to import excel file
Replies: 6
Views: 2534

You can use Microsoft's ODBC Driver for Excel for this.

But I would prefer to do it by converting it into the csv then using using the csv as a sequential file.
by loveojha2
Fri Jul 07, 2006 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get parameter values from file
Replies: 4
Views: 1830

You can use dsjob command line tool.
by loveojha2
Thu Jul 06, 2006 10:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hierarchy ?
Replies: 1
Views: 648

First select the rows with order by level desc Next from the source to a transformer. Create a Stage Variable named MaxDepth having derivation as if(@INROWNUM=1) then SrcLink.Level Else MaxDepth In derivation for Lowest if(SrcLink.Level=0) then 'Y' Else 'N' In derivation for Highest if(SrcLink.Level...
by loveojha2
Thu Jul 06, 2006 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 4208

Ya Chulett,
Missed that.
Thanks for correcting.
by loveojha2
Thu Jul 06, 2006 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while invoking sqlplus-command line
Replies: 6
Views: 2144

at the prompt execute
path=[[drive:]path[;...]];

Or using DSExecute first execute "cd pathlocation" (where sqlplus is present.).
by loveojha2
Thu Jul 06, 2006 5:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem of key generation while loading a file in 2 targets
Replies: 5
Views: 1340

After running that job it is observed that the first file loads firstly and 2nd after that That is not i want How do you know that? What about replacing your source file with a table (just to see if that is troubling(for a test))? Try KeyMgtGetNextValueConcurrent() routine, does that make any diffe...
by loveojha2
Wed Jul 05, 2006 9:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 4208

No, this is not an issue. And I don't think setting the transaction size to 1 is good for performance?
With the update action Insert new rows or update existing rows the commit frequency gets automatically set to 1.
by loveojha2
Wed Jul 05, 2006 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert Error
Replies: 7
Views: 1494

This means your source records are duplicated in such a way that it conflicts with one of the unique index present on the fact table. check the count of the records on the columns part of the index. Say if you have index1(col1,col2) on fact table then check select col1,col2,count(*) from srctable gr...
by loveojha2
Wed Jul 05, 2006 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing file name dynamically
Replies: 2
Views: 853

Use Parameters in place of the Hardcoded File names. Its pretty straight forwad. 8)
by loveojha2
Tue Jul 04, 2006 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there constraint on number of job activities in job seq
Replies: 3
Views: 1174

is there any constraint present on number of job activities tht can start at same time. No, until unless they don't have any resource conflicts (like writing to sequential files, table locks, transaction locks). Or it exceeds the parameter limits, like number of Hashed file opened at a time. And, o...
by loveojha2
Tue Jul 04, 2006 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to pass the parameters to UserVariable Activity
Replies: 2
Views: 1487

"-d -s" : #$DBName# : "-x ABC -u" : #$DBUser# : "-p" : #$DBPass# : ",
d -s" : #$DBName# : "-x LMN -u" : #$DBUser# : "-p" : #$DBPass#

Use : operator to concate strings. That should work fine.
by loveojha2
Mon Jul 03, 2006 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass parameters in UserVariables activity stage
Replies: 2
Views: 1807

Prior to uservariable you can run a job which reads from the sequential file and places the contents on the $UserStatus of the comma separated string, then you can use this $userstatus within the Expression Field of the user variables.
by loveojha2
Mon Jul 03, 2006 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Login on personnel desktop
Replies: 6
Views: 1086

While Logging in i am using computer name as host name and username and password i am omiting by checking omit check box.
Specify username and password and then try logging in, it should work for you.
by loveojha2
Mon Jul 03, 2006 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection Timeout
Replies: 3
Views: 1246

I guess this is something that you need to specify at the time of ODBC connection creation (DSN creation). :?