Search found 45 matches

by mujeebur
Wed Nov 02, 2005 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read template file 'dssendmail_template.txt'
Replies: 2
Views: 3770

This similar issue we were faced and analyzed the problem. The email notification was sending successfully , When we run our DS jobs via 'dsadm', but if run by developer user-id , getting the error. DSSendMail routine will be creating a script <job_name>_dssendmail and will be removed after the job ...
by mujeebur
Tue Oct 04, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file query from outside project
Replies: 1
Views: 613

Hashed file query from outside project

As a project standard , we stored all the hashed files outside the repository(project) directory. So there is no entry of this in VOC . But I would like to query the data and verify thru TCL ( DataStage/SQL ) .

Any work-around ?
by mujeebur
Fri Sep 23, 2005 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to access rows added to a hash file and to a table
Replies: 3
Views: 1127

You can genearte a report with all the links information on the transformer properties "after subroutine" to "JobReport" , which gives total of record counts traversed on each link.
by mujeebur
Fri Sep 09, 2005 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_DUMP_SCORE
Replies: 3
Views: 12392

where this file created ?

where this file will be created in UNIX ? which path ?
by mujeebur
Thu Jun 02, 2005 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slowly Changing Dimensions
Replies: 2
Views: 1158

Slowly Changing Dimensions

Hi , Could anyone please shed some light on how to implement slowly changing domensions with DS7.5 ?
by mujeebur
Thu Jun 02, 2005 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: load data from foxpro to oracle 10g
Replies: 3
Views: 929

The bestway is extract the data as text files from Foxpro and load to Oracle either DataStage or SQL*Loader.

--Mujeeb.
by mujeebur
Thu Jun 02, 2005 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constraint based laoding
Replies: 4
Views: 1433

To improve the performace of the Job , you can disable all the constraints on the tables and load them. Once loading done , check for the integrity of the data . which does not meet raise expetional data ans cleanse them. This only a suggestion , normally when loading on constraints are up , will dr...
by mujeebur
Wed Mar 09, 2005 10:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between DataSet and FileSet
Replies: 2
Views: 1799

Difference between DataSet and FileSet

Hi,

What is the basic difference between DataSet and FileSet ? What are best scenarios those can be implemented distinguishly ?
by mujeebur
Tue Mar 08, 2005 9:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split data into files?
Replies: 15
Views: 5841

Hi,

I guess this can be done by below :

Sort the file and pass it to a Transformer stage . Use stage variable to compare the previous row , if its changes write to different file , else write to the same file. Like wise you may have accounts.txt and address.txt ..etc by using constraints mechanism.
by mujeebur
Tue Mar 08, 2005 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Repository Objects
Replies: 2
Views: 1340

How to find Repository Objects

Hi,

How to find Repository Objects in DataStage ? Like in Informatica there is a Informatica Repository Database , in which all the repository database tables will be located .
by mujeebur
Tue Mar 08, 2005 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Inserting DATETIME field
Replies: 3
Views: 2289

Hi, I suspect this is to be:

ts 'YYYY-MM-DD hh:mi:ss:mmm'
by mujeebur
Tue Mar 08, 2005 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before-SQL - To be committed only after the job finishes
Replies: 6
Views: 1950

Hi, What Ascential says in the manual is : "The Open command property allows you to specify a command (for example some SQL) that will be executed by the database before it processes any data from the stage. There is also a Close property that allows you to specify a command to execute after th...
by mujeebur
Mon Mar 07, 2005 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before-SQL - To be committed only after the job finishes
Replies: 6
Views: 1950

What abt setting back to ARCHIVELOG mode in the post-session , means to say after the commit of SQLs.
by mujeebur
Mon Mar 07, 2005 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ten most important things ...
Replies: 2
Views: 1366

As Ascential suggests , start with small Job and reach to final stage. Also do not think about performance of the job first.
by mujeebur
Mon Mar 07, 2005 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we have mulitple rejects pointing to same physical file
Replies: 5
Views: 2465

You can implement this using Switch with multiple if else clauses and out put the records which ever you dont want to process.