Search found 246 matches

by hamzaqk
Wed Apr 23, 2008 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Job Execution
Replies: 6
Views: 1944

Would it not be a good idea if you can have the names of jobs pertaining to a particular subject area written to separate files from the table i.e. subjectAreaA.txt,subjectAreaB.txt with job names passed as comma separated value. You can then read these files by the execute command stage and then pa...
by hamzaqk
Wed Apr 23, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monitor didn't work for 2 target Oracle Enterprise Stage
Replies: 3
Views: 1621

try stopping the job mon and restarting it .

Code: Select all


sh jobmoninit start /stop $APT_ORCHHOME

by hamzaqk
Wed Apr 23, 2008 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error during file comparision
Replies: 8
Views: 3419

are you being able to view data in the two sequential files ?
by hamzaqk
Wed Apr 23, 2008 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer not working
Replies: 6
Views: 1484

i think you need to install the .net framework with it too. worked for me
by hamzaqk
Fri Apr 18, 2008 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server should be installed on all the nodes?
Replies: 2
Views: 797

you dont need to install the server on all machines but the engine should be copied to all nodes as far as i can remeber
by hamzaqk
Fri Apr 18, 2008 1:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file type selection
Replies: 1
Views: 723

There is a utility in the client CD called hashed file calculator (HFC.exe). It is a good one for atleast specifying modulus etc. Usuaully a Type 30 dynamic hashed file is used.
by hamzaqk
Thu Apr 17, 2008 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle null records for date column in transformer
Replies: 1
Views: 1432

Yes the irritating issue! you need to cater the null handling here yourself,

put something like

Code: Select all

 IF inputCol.END_DATE is null then '9999/12/31' Else inputCol.END_DATE
you can also do the null handling in the column definition of the source. and you can also define it non nullable in the target.
by hamzaqk
Thu Apr 17, 2008 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help To delete a job
Replies: 11
Views: 2783

cant do much then :(
by hamzaqk
Thu Apr 17, 2008 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help To delete a job
Replies: 11
Views: 2783

At the Shell
------------

- Execute the following commands:
cd $DSHOME
. dsenv
bin/uvsh

- If the job is locked, execute the following:
UNLOCK RECORD jobname ALL

Then go in the repository and delete the job
by hamzaqk
Mon Apr 14, 2008 10:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob Using Teradata Fastload
Replies: 15
Views: 12476

Another reason it should not be called Fast load is because Fastload does not support loading into a table with secondary index on it.

Teradata Certified Master V2R5
by hamzaqk
Mon Apr 14, 2008 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob Using Teradata Fastload
Replies: 15
Views: 12476

Thanks, but i do not support the idea that it should be called "Fast load in append mode" in the first place as the name conflicts with the real functionality of fastload itself. Apart from this the only fast load which the job does while using Enterprise Edition is into the empty table wo...
by hamzaqk
Mon Apr 14, 2008 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob Using Teradata Fastload
Replies: 15
Views: 12476

where did i say it can ?
by hamzaqk
Mon Apr 14, 2008 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob Using Teradata Fastload
Replies: 15
Views: 12476

this is what the teradata enterprise stage does internally in the first place..................
by hamzaqk
Mon Apr 14, 2008 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata along with datastage
Replies: 4
Views: 3163

it will ignore the values when you use the enterprise stage. this is because the work table which is created is based on the concept create SET TABLE orch_workxxx as select * from source with data and not . a create multiset table work_orchxx as source with data this will drop any default values. Al...
by hamzaqk
Mon Apr 14, 2008 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob Using Teradata Fastload
Replies: 15
Views: 12476

You cannot fastload into an already populated table. it Multi loads data into the table. this is one of the reasons that a temporary table is created when we use the enterprise stage.

Teradata Certified Master V2R5