Search found 91 matches

by saikir
Thu Nov 29, 2007 1:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looping a Job on Windows
Replies: 12
Views: 4390

Hi,

The 6.x version of DataStage does not have any loop start and stop actvities. These stages have been incorporated in the sequencers from the 7.x version of DataStage

Sai
by saikir
Tue Nov 06, 2007 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bitmap Indexes
Replies: 8
Views: 5615

Hi, One Important thing: I belive your fact table would be partitioned by time. And bit map indexes on a table are always local. In other words when you partition the table, all the bitmap indexes also will get partitioned. The key thing in disabling and re-building the indexes is that, you do that ...
by saikir
Tue Nov 06, 2007 5:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_AUDIT
Replies: 3
Views: 5926

Hi Ray, Thanks for the inputs. Was able to retrive data from DS_AUDIT table using the following query: SELECT DS_AUDIT.@ID, DS_AUDIT.KEY , DS_AUDIT.DTC , DS_AUDIT.CREATOR , DS_AUDIT.PREVDTD, DS_AUDIT.PREVDELETOR , DS_AUDIT.DTM, DS_AUDIT.MODIFIER , DS_AUDIT.REASON, DS_AUDIT.INSTANCE , DS_AUDIT.CLASS ...
by saikir
Mon Nov 05, 2007 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_AUDIT
Replies: 3
Views: 5926

DS_AUDIT

Hi All, I am trying to capture the audit information of jobs using the DS_AUDIT table. But when i try to query the DS_AUDIT table, i get the following error: Command failed to execute - DataStage/SQL: syntax error. Unexpected symbol. Token was "CLASSID". Scanned command was FROM DS_AUDIT S...
by saikir
Sun Nov 04, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bitmap Indexes
Replies: 8
Views: 5615

Hi, Using of Bitmap indexes in warehouse is very common. Especially on fact tables you tend to have only bitmap indexes on every column corresponding to the dimension. Oracle states that, you should use bitmap indexes only on low cardinality columns. However, in most projects including ours, we use ...
by saikir
Sun Nov 04, 2007 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bitmap Indexes
Replies: 8
Views: 5615

Hi, Using of Bitmap indexes in warehouse is very common. Especially on fact tables you tend to have only bitmap indexes on every column corresponding to the dimension. Oracle states that, you should use bitmap indexes only on low cardinality columns. However, in most projects including ours, we use ...
by saikir
Thu Nov 01, 2007 10:45 pm
Forum: General
Topic: DATATAGE EXPORT's
Replies: 5
Views: 2841

Hi,

If i am not wrong the commaand line Import/Export does not have options to import either design or executable alone. Both design and executables get imported/exported.

Sai
by saikir
Wed Oct 17, 2007 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file - (project directory or different directory)
Replies: 8
Views: 3266

Hi, As stated earlier, it is better to store the hashed files in a particular directory. In this case you can track the hashed files easily rather then seraching for them in the project home. In our project for all the jobs we have separate folders where the hashed files are explicitly stored. You c...
by saikir
Wed Oct 17, 2007 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DsExecute for executing stored procedure.
Replies: 3
Views: 2241

Hi, You can call PL/SQLR or SQL statements in the job control as follows: Call DSExecute('NT','SQLPLUS ' : ORACLE_UID : '/' : ORACLE_PWD : '@' : ORACLE_DSN : ' @' : Path : 'test.sql',Output, SystemReturnCode ) where NT indicates it is a OS command :ORACLE_UID is the user id... Path is the name of th...
by saikir
Wed Oct 17, 2007 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assign Value to Job Parameter
Replies: 2
Views: 1347

Hi, If your parnt job is accepting the parameters and you want the child job to be called with these parameters, you can do it as follows: ErrCode = DSSetParam(hJob1, "ORACLE_DSN", "ORACLE_DSN") Where your job accepts the parameter ORACLE_DSN Or you can hard code the values as be...
by saikir
Wed Oct 17, 2007 2:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assign Value to Job Parameter
Replies: 2
Views: 1347

Hi, If your parnt job is accepting the parameters and you want the child job to be called with these parameters, you can do it as follows: ErrCode = DSSetParam(hJob1, "ORACLE_DSN", "ORACLE_DSN") Where your job accepts the parameter ORACLE_DSN Or you can hard code the values as be...
by saikir
Thu Sep 27, 2007 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOb parameters sheduling vs default
Replies: 2
Views: 937

Hi, Did you verify the job parameters when you were exporting the job parameters from development to production? It is very much possible that the parameters were hard coded in development and running with the same in production. Also, check the parameters through the administrator in environment va...
by saikir
Thu Sep 27, 2007 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATA STAGE
Replies: 6
Views: 2057

Hi,

The filter option in sequntial file can be used to execute OS commands. In our project, due to space consideration the flat files are zipped. Using the filter option of the sequntial file, we unzip them using gunzip

Sai
by saikir
Wed Sep 26, 2007 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail - Attachement - DataStage Server 7.0
Replies: 7
Views: 5569

Hi,

As stated earlier by Ray, the option to attach files is introduced in 7.5. You can use Blat for sending mails with attachments. We have been using blat succesfully in our project for some time now

Sai
by saikir
Tue Sep 25, 2007 1:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improving Job Performance
Replies: 5
Views: 2886

Improving Job Performance

Hi All, I am preparing some notes on DataStage and want to have some general gudelines on ways to improve job performance. Here are some that i have noted in my proejct: - Array Size in Case of OCI Stages - Transaction Size in Case of OCI Stages - Using HFC.exe - Using In Process and Inter Process w...