Search found 53 matches

by anandkumarm
Mon Aug 20, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RUNNING MULTIPLE INSTANCES IN PARLLEL
Replies: 1
Views: 798

RUNNING MULTIPLE INSTANCES IN PARLLEL

Hi I have a job that extracts data from a table in oracle database and puts it into a dataset.this job takes the a parmeter 'period' SAY 'apr-07' and runs the job. we have to extract the data for n number of such periods.The table is very huge and is not partioned so we were extracting the data for ...
by anandkumarm
Thu Nov 02, 2006 9:36 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Error loading Metadata.
Replies: 9
Views: 9148

Hi, I was getting similar kind of error AppLib::_GetConnectionInfo: Unable to create DbConnectInfo object: DbConnectInfo::New: Unable to create Hash2Sql object for table 'DbConnection': Hash2Sql::new: Failure on &ExecSQLColumns for table 'DbConnection': CoreOdbc::_ExecCatalogFetchAll: Problem en...
by anandkumarm
Tue Jun 06, 2006 1:05 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profile Stage Unable to select rows from the table
Replies: 2
Views: 3332

Re: Profile Stage Unable to select rows from the table

Resolved with the help of Rhys Jones on developernet. The table contained fields with reserved words as their field names I changed them and it works now.
by anandkumarm
Tue Jun 06, 2006 11:20 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profile Stage Unable to select rows from the table
Replies: 2
Views: 3332

Profile Stage Unable to select rows from the table

Hi, I am using ProfileStage Version 7.51 build 10. on OS : Windows NT While running the column analysis I am getting the following error: 6/6 11:56:58: \\HDMCJUNAPPTST8\ColumnAnalysis: 5070 0 Unable to select rows from table 'Talon_C1479' at DSN 'sap_lcm_cm_ps_work'. I am able to do the column analy...
by anandkumarm
Wed Dec 14, 2005 11:02 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Text Over KMS
Replies: 0
Views: 1709

RTI Text Over KMS

I created a service with Text over JMS binding.I am doing this to improve the performance ..I am getting real bad performance if i do a SOAP over HTTP binding.Ascential suggested this solution to use the Text over JMS binding. But i cant callit in Datastage webservices .So can any one help me how to...
by anandkumarm
Thu Dec 08, 2005 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 3024

You can do this with a COMMON variable accessed using a custom FUNCTION, but you MUST disable row buffering, remove IPC stages, and disable read/writecaching for your premise to work no matter what. Another method would be to write the value to a single row hash file on the last transformer and ref...
by anandkumarm
Thu Dec 08, 2005 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 3024

If you do not have active-to-active stage interprocess buffering enabled then all the transforms will be executed by one process, and row 2 won't be read until row 1 processed; so there is no need for passing global values between stages. I don't understand why you have this restriction in your job...
by anandkumarm
Thu Dec 08, 2005 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 3024

If you do not have active-to-active stage interprocess buffering enabled then all the transforms will be executed by one process, and row 2 won't be read until row 1 processed; so there is no need for passing global values between stages. I don't understand why you have this restriction in your job...
by anandkumarm
Thu Dec 08, 2005 9:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 3024

You can access a link's value using @INROWNUM in the same transform. If you wish to use that value in another transform downstream, then add this value to a new column in the output derivation. I'm not sure I understood your question or problem, but this might answer it. If not, perhaps you could e...
by anandkumarm
Thu Dec 08, 2005 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 3024

DSJob functon

I want to assign the inrow number value af link X to a variable in stage Y

Can i use the DSJ.LinkInrownumber.

Can I just put my link Name in this command?????

Any help is greatly Appreciated

Thank you
by anandkumarm
Wed Feb 16, 2005 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty String rejection in Oracle
Replies: 4
Views: 1637

Hi,

I tried both ways but still not able to resolve the issue

Thanks,
Anand.
by anandkumarm
Wed Feb 16, 2005 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty String rejection in Oracle
Replies: 4
Views: 1637

Empty String rejection in Oracle

Hi All, I am getting an empty value in a field from Binary EBCDIC flat file. When I tried to load it into an Oracle table it says that its a null value and rejects the value. I tried writing a simple transform function to identify whether the incoming value is empty or null and tried replacing it wi...
by anandkumarm
Wed Feb 02, 2005 9:37 am
Forum:
Topic: MetaStage and Java Virtual Machine
Replies: 5
Views: 2322

sathyanveshi wrote:Hi Anand,

Thanks for your response. But may I know where can I get the Microsoft JVM as I couldn't get it from Microsoft site.

Cheers,
Mohan
It is available in the MetaStage installation cd \\jvm\MSJavx86.exe

or try to search in google for MSJavx86.exe

Anand.
by anandkumarm
Tue Feb 01, 2005 3:01 pm
Forum:
Topic: MetaStage and Java Virtual Machine
Replies: 5
Views: 2322

Re: MetaStage and Java Virtual Machine

Hi, I installed MetaStage yesterday. After installation and restart of my machine, when I tried to run the MetaStage application, I encountered the error in a dialogue box: "Unable to start application. The Java Virtual Machine cannot be loaded - Class not registered". I then installed th...
by anandkumarm
Fri Jan 28, 2005 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we see a Job's Code
Replies: 4
Views: 2052

A job is executed by a BASIC routine called DSD.RUN. Source code for this is not available. A Transformer stage is executed by a BASIC routine called DSD.StageRun. Source code for this is not available. The code generated for a Transfomer stage by compiling a job can still be viewed in RT_BPnnn, wh...