Search found 68 matches

by dhiraj
Fri Apr 08, 2005 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash stage-Allow stage write cache
Replies: 5
Views: 3299

Please give more information as to how you are loding your file and how you are reading it. Are you updating/inserting the file the same time you are reading it or is it a load first and then read it case. In the latter case, you can use the Allow stage write cache option. If you are concurrently bo...
by dhiraj
Wed Apr 06, 2005 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inesrt/update prblm with separate ODBC stage for same tabl
Replies: 2
Views: 2071

The problem is that you are trying to update the table before commiting the inserted rows. To overcome this, set the rows per transaction property in the ODBC stage(where you are inserting the records) to 1. i.e. commit after each row is inserted. But be aware that doing this will give you a poor pe...
by dhiraj
Wed Apr 06, 2005 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does filter command in sequential file stage work?
Replies: 12
Views: 13245

I just specified "sort -u" in the filter command and input file name in the file name property of sequential file stage and it worked just fine. I mean without specifying the file to sort in the filter command.

Is there something that i am missing?

Thanks
Dhiraj
by dhiraj
Tue Apr 05, 2005 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does filter command in sequential file stage work?
Replies: 12
Views: 13245

. All the Filter command does is execute the command as entered and the stage then reads 'standard out' as if it were a flat file so do i also need to specify the input data file in the filter command ? does datastage not indirect the file specified in the sequential file stage to the filter comman...
by dhiraj
Tue Apr 05, 2005 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does filter command in sequential file stage work?
Replies: 12
Views: 13245

How does filter command in sequential file stage work?

Hello, How does filter command in sequential file stage work? does it read each line in the specified input file and pass each line to the filter command using indirection and uses what ever is output by the filter command for processing, including any informational message? I am presently trying to...
by dhiraj
Mon Apr 04, 2005 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a file 'Dynamically'
Replies: 2
Views: 763

You could but all the files you create would be enclosed in a folder.

Use the folder stage as your target. Folder stage takes 2 columns as inputs. first is the file name and the second should be the entire record concatenated (or data that you wish to write to the file).

Regards
Dhiraj
by dhiraj
Mon Apr 04, 2005 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File lookup
Replies: 3
Views: 2211

Hi Kumar, Inorder to query a hash file using relational operators , You should use the Universe stage. Refer to the following post. http://www.dsxchange.com/viewtopic.php?t=92083 And ideally to perform a look up based on the value retrieved from another look up you should use 2 transformers.perform ...
by dhiraj
Mon Apr 04, 2005 10:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prblm while clearing large data
Replies: 14
Views: 5616

and yes Could also be an issue with free disk space on your database.

Regards
Dhiraj
by dhiraj
Mon Apr 04, 2005 10:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prblm while clearing large data
Replies: 14
Views: 5616

looks to me that datastage is deleting records from the database and not truncating the table,hence your transaction logs are getting full.

Try trucating the table before you run the job.

Regards

Dhiraj
by dhiraj
Tue Mar 29, 2005 1:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in dsjob command
Replies: 3
Views: 2518

Hello,

What is '/backups/Projects/Test ' ?

The syntax for using DSJOb is

dsjob -jobinfo <projectname> <jobname>

If Test is your project name then it should look like

dsjob -jobinfo Test LkpProvEast1


Regards

Dhiraj
by dhiraj
Fri Oct 22, 2004 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set default Params
Replies: 2
Views: 943

Set default Params

I was looking at Ken's SetDefaultParams job which was posted at ADN. Presently i'm trying to customize this for my own requirements. I have couple of questions about this 1) this job was written for version 5.1 , Does it work for version 7.1 as well? 2) i observed that the job updates columns 14 -20...
by dhiraj
Fri Oct 22, 2004 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file cache sharing
Replies: 5
Views: 6148

Bryan, There are config parameters in the uvconfig file which you can change to define what level of file sharing is required. By default it is link private. i.e each link loads its own copy of the file in memory. it could also be set to 1) link public sharing . i.e multiple streams shares the singl...
by dhiraj
Thu Oct 14, 2004 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to retrieve multiple rows via lookup?
Replies: 5
Views: 2358

Kevin, Go to the properties page of the transformer where you are doing the lookup --> inputs tab ---> select your look up link from the drop down list-->check the box which says link returns multiple rows.i am assuming you are using ODBC stage for look up Search the forum. This has been discussed e...
by dhiraj
Thu Oct 14, 2004 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Field Function
Replies: 4
Views: 964

oops. Craig is right. don't know how i made that mistake. :oops: We use parameter for batch start date in almost every job !
by dhiraj
Thu Oct 14, 2004 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Field Function
Replies: 4
Views: 964

If you are using the field function in a transformer, then you can.
Remember you should enclose the parameter name within # symbol.

eg Field(#DSN#,'|',1)
Where DSN is the parameter name.


Dhiraj