Search found 594 matches

by rameshrr3
Fri Aug 22, 2008 5:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to Mainframe DB2 from PX
Replies: 4
Views: 1793

You can even use odbc or DRS stage for any database, but these stages lower the performance. ODBC is not necessarily slower, maybe it doesnt provide all functionality that a Native API stage does with the respective database. Anyone whose been through Data Direct's wire protocol ODBC driver documen...
by rameshrr3
Tue Aug 19, 2008 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove duplicates in Datastage server edition 8
Replies: 5
Views: 10243

Yu can use RANK /ROW_NUMBER functions if you are extracting from Oracle database, refer Oracle SQL Guide- freely downloadable from OTN. Similar database functions may exist for others.
by rameshrr3
Tue Aug 12, 2008 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automating Design work
Replies: 7
Views: 2359

We would like to do this lookup mapping work for lot of jobs, and wanted to finish as fast as we can....
Add more developers ;) .. Yeah i know management has the usual shortage of budgets and business has the urgency..

Threaten to gracefully resign and ask management to do the development ;)..
by rameshrr3
Fri Aug 08, 2008 8:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing XML files
Replies: 5
Views: 1666

Use a Before Job Subroutine and call and automated FTP or SCP script to copy to a local folder, then use External Source to cat the file contents to its output link and pass this output link to XML input
by rameshrr3
Thu Jul 31, 2008 1:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: migration thorugh cobol code and Datastage PX
Replies: 13
Views: 8581

DB2 target on the host side. Which platform at the host side? Im sorry this forum may not be the best place for quick answers to global questions .. you will need to do some work on your side of the question, and probably ask the client . That being said , we are ready to answer specific TECHNICAl ...
by rameshrr3
Fri Jul 25, 2008 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: verical pivot with max input rows unknown
Replies: 6
Views: 4692

I have a solution using server jobs, you can try to convert it to parallel( Shouldn't be a great deal)- Im not

Thanks
Ramesh
by rameshrr3
Tue Jul 15, 2008 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special Charecters in SCD Stage
Replies: 6
Views: 2111

Does your manager know about 'IBM Passport advantage' or NLS? Have you listed down assumptions about data quality from source systems?
by rameshrr3
Tue Jul 15, 2008 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Datastage Env variable value in Basic Rouitne
Replies: 6
Views: 3194

You can use a code snippet similar if you have a job handle attached. CurrentJobHandle = DSJ.ME /* CurrentJobHandle= DSAttachJob(JobName,DSJ.ERRFATAL)*/ TargetEnv = '$TARGET_ENV' TargetEnvValue = DSGetParamInfo(CurrentJobHandle, TargetEnv, DSJ.PARAMVALUE) Ans = TargetEnvValue In the example above $T...
by rameshrr3
Sun Jul 13, 2008 1:32 pm
Forum: General
Topic: Authentication Failure
Replies: 3
Views: 3260

Hey thanks, i logged on to the admin console and added a new user, im able to log into Designer using the new id.
by rameshrr3
Fri Jul 11, 2008 7:53 pm
Forum: General
Topic: Authentication Failure
Replies: 3
Views: 3260

Authentication Failure

Hi All Im new to Datastage 8.01 and we are having problems logging on to the datastage server via DS Clients( Designer/Director), however we are able to log into the information server console. We get an error message saying that "Failed to authenticate current user against the selected domain&...
by rameshrr3
Mon Jul 07, 2008 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine in UNIX script
Replies: 8
Views: 3337

I have never encountered such a 'requirement' before.
Was that an 'interview question' by any chance?

Otherwise I'll second WomaWil's approach.
by rameshrr3
Wed Jul 02, 2008 8:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using $ENV as default value for environment variable
Replies: 17
Views: 5020

Now, does this work in the OP's scenario where the Environment Variable has been defined not just in the .profile but in the Administrator as well? Meaning, it allows a locally set value to override the Project's value? Well apparently yes, because my example had a default value already set in admi...
by rameshrr3
Wed Jul 02, 2008 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using $ENV as default value for environment variable
Replies: 17
Views: 5020

You need to to set the environment value outside datastage in your user profile, and launch the job from the project directory using dsjob -local option Example ( From unix command line) $ export CenUser=cogapp; $ dsjob -run -mode NORMAL -local -param $CenUser='$ENV' neo_sap_dev2_752 SAP_FinanceWarr...
by rameshrr3
Wed Jul 02, 2008 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check for file existence
Replies: 7
Views: 4109

Isn't there a way in which you can use a WaitForFile Activity?
Otherwise you need to extract the Command.Output and parse it subsequently in the sequencer ( As noted)

HTH