Search found 68 matches

by dhiraj
Wed Oct 13, 2004 6:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory Usage by data stage server
Replies: 6
Views: 3365

Michael, The job looks like this Seq-->Xmr-->seq-->Xmr-->IPC-->Xmr-->Seq Each transformer does a couple of lookups in to hash files/odbcs. Inter process row buffering is enabled. All the 13 jobs are physically 13 different jobs to datastage , but they do exactly the same functionality.We are not usi...
by dhiraj
Wed Oct 13, 2004 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Manually edit table definitions
Replies: 8
Views: 2325

i think the following should work. but make sure you have back up copies of your job before attempting it. 1)export the job as a xml file 2) write a pgm to traverse through the xml file and replace the value of "derivation" property of collection "columns" for the required stage ...
by dhiraj
Wed Oct 13, 2004 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to retreive data on a hash look up
Replies: 6
Views: 1920

Neo,

trim the Name field before you write in to the hash file. Also use the trim function, before looking up for the name.

HTH
Dhiraj
by dhiraj
Wed Oct 13, 2004 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory Usage by data stage server
Replies: 6
Views: 3365

Hey Peter,

The only compelling reason is that our clients are particular about it.


Dhiraj
by dhiraj
Tue Oct 12, 2004 7:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory Usage by data stage server
Replies: 6
Views: 3365

Memory Usage by data stage server

We were running 13 jobs concurrently. each processing about 10 Million records and running for several hours. These jobs read from sequential files, do multiple lookups in to ODBCs and hashfiles and finally write the result in to sequential files. The jobs run real slow and some times some of them a...
by dhiraj
Mon Oct 11, 2004 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating control files for SQL Server BCP utility
Replies: 13
Views: 5985

craig, 1) If you are bulkloading in to all the columns of the table and your file contains only the columns which are present in the table and your file is a delimited file and your file is a character file ( no packed decimal or binary data) then you do not require a format to bulk load using the s...
by dhiraj
Thu Oct 07, 2004 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset jobs via command line dsjob
Replies: 3
Views: 8075

the code given below should reset the specified job.

Code: Select all


dsjob run -mode RESET  -wait <proj> <jobname>

Dhiraj
by dhiraj
Thu Oct 07, 2004 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selecting Date which lies between 2 dates
Replies: 9
Views: 3217

I am trying to do this in Xfm but I am not getting the required values. What are you doing in the transformer? I mean how are you trying to implement this? what are you looking up into? An ODBC? if so you could use the user defined sql option in the ODBC stage and specify the relational condition y...
by dhiraj
Wed Oct 06, 2004 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Blank Rows into a file
Replies: 7
Views: 2842

If the output file produced by your job is in sorted order of the quarter number, then use an after job routine to do this 1) read the first rec from the file and write it to the output 2) read the next rec and compare the quarter number with that of the previous record. if not in order you expect, ...
by dhiraj
Mon Oct 04, 2004 6:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Validation
Replies: 8
Views: 2987

this should be even faster :wink:

Code: Select all

Iconv(Arg1, "DMDY[2,2,2]")
Ans=status()
Dhiraj
by dhiraj
Tue Sep 28, 2004 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 truncate and insert problem
Replies: 6
Views: 4922

Hey Xanadu, You could land your target in to sequential file and then use the db2 bulk load stage to bulk load the file using the DB2 bulk load stage. set the load type property to REPLACE. If you do not want to land your target in to seq file then bulk load an empty file first and then run your job...
by dhiraj
Thu Aug 26, 2004 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 12131

1) Is 'DEPENDS' some kind of reserved word. i.e is the code given below equivalent of what u've given? INSERT INTO DICT DS_JOBS (FIELD, CODE, EXP, NAME, FORMAT, SM, ASSOC) VALUES ('DEPEND_TYPE', 'I', 'RAISE(TRANS("DS_JOBOBJECTS","J\": @RECORD<5> :"\ROOT",32,"X"...
by dhiraj
Thu Aug 26, 2004 7:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling stored procedure using ODBC stage.
Replies: 1
Views: 956

Calling stored procedure using ODBC stage.

I have a job that calls a stored procedure using an odbc stage. This stored procedure is invoked multiple times(a few thousand times) by the job. When i run this job i get an error message stating invalid cursor state. This stored procedure has statement as shown below. select 'MYMessage' When i rem...
by dhiraj
Thu Aug 26, 2004 7:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running server jobs in parallel using Sequence Job
Replies: 1
Views: 1045

Running server jobs in parallel using Sequence Job

I have a sequence job, which executes five server jobs in parallel. An external scheduler triggers this sequence job. Now if one of five server jobs abort ,and rest run to completion. when i restart the sequence job it will run all the five jobs all over again.How can i restrict it to run the aborte...
by dhiraj
Thu Aug 26, 2004 6:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 12131

can you please explain what the 3rd dictionary item means?

INSERT INTO DICT DS_JOBS (FIELD, CODE, EXP)
VALUES ('DEPENDS', 'PH', 'DEPEND_TYPE DEPEND_JOBS');

Thanks

Dhiraj