Search found 529 matches

by nagarjuna
Fri Sep 25, 2009 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding header and footer records to a output file
Replies: 7
Views: 10118

Makesure that @inrownum is generating correctly with multiple nodes .

Write a before job routine

cat header > out_file

after job routine

cat footer >> output_file .

Here header n footer are static in nature .
by nagarjuna
Fri Sep 25, 2009 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make the DataStage jobs Read only.
Replies: 9
Views: 10063

Take the export of the datastage job and within dsx file replace readonly parameter value from 0 to 1 or 1 to 0.
by nagarjuna
Fri Sep 25, 2009 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error when importing the jobs
Replies: 5
Views: 1927

Is it the first time you are compiling your job in production environment ?

If yes , then you need to set APT_COMPILER_OPT and APT_LINKER_OPT to correct values .
by nagarjuna
Fri Sep 25, 2009 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2/Udb Enterprise - How to see the Load Statement
Replies: 1
Views: 685

I have not worked on DB2 much ..But if it is oracle enterprise stage then you can set some env variable to get the query in a directory .

Thanks
by nagarjuna
Fri Sep 25, 2009 9:04 am
Forum: General
Topic: difference in record count in parallel and sequential mode
Replies: 9
Views: 2337

Yeah , we have faced similar type of problem with DB2 API stage .At that time , We were using 2 node file and records got duplicated .So , check if its the same in your case .

Thanks
by nagarjuna
Wed Sep 09, 2009 1:53 pm
Forum: General
Topic: Is there any function like between
Replies: 11
Views: 4168

You have lot of documentation and on top of it you have dsxchange :wink:
by nagarjuna
Wed Sep 09, 2009 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i need to know where it is stored "DSParams" file
Replies: 11
Views: 10768

You can use find command to search for DSParams file
by nagarjuna
Wed Sep 09, 2009 1:44 pm
Forum: General
Topic: Datastage V8 certification - training material ?
Replies: 6
Views: 19256

Check vincent blog in internet ..you can get very useful information
by nagarjuna
Wed Sep 09, 2009 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Multiple lines into single line
Replies: 4
Views: 1405

Also you acn use tr '\n' ' ' command
by nagarjuna
Wed Sep 09, 2009 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII conversion for '|' character
Replies: 12
Views: 18330

Within the sequential file or complex flat file , Use cobol copy books to read the data in the file ....Also could you please let us know what are the options that you are using dd command ??
by nagarjuna
Wed Sep 09, 2009 1:40 pm
Forum: General
Topic: Is there any function like between
Replies: 11
Views: 4168

"LIKE" and "BETWEEN" functions can be used in FILTER stage
by nagarjuna
Mon Aug 31, 2009 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: impersonation mode
Replies: 2
Views: 2218

Hi ,

Thanks for the quick response .I have found that in the below post

viewtopic.php?t=125699&highlight=impersonation+mode

I will check the UVCONFIG file and will get back.


Thanks
by nagarjuna
Mon Aug 31, 2009 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: impersonation mode
Replies: 2
Views: 2218

impersonation mode

Hi Everyone ,

Can somebody help me in understanding "What is impersonation mode " in datastage ? Is it related to datastage ??

Note :Its not an interview question .

Thank you all .
by nagarjuna
Tue Aug 18, 2009 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to see the extraction query in director
Replies: 13
Views: 3266

Oracle enterprise stage also wont show the query unless job fails .Please correct me if i am wrong
by nagarjuna
Fri Aug 14, 2009 10:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need logic
Replies: 4
Views: 1933

Try cat filename | tr '\n' '|'