Search found 28 matches

by reachthiru
Wed Feb 01, 2006 11:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need best partitioning method for hierarchy mgmt
Replies: 5
Views: 2499

Hi gpatton,

I have only one root node.
by reachthiru
Tue Jan 31, 2006 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup with duplicate values in key column
Replies: 14
Views: 5573

Hi, I assume the following would work. But I am not very much confident about it. Assume that your table names are M (main table), A (Asset ID), B (Transaction_Sub_type), C (Transaction Type) and D (Source). What you can do is join M & A first, then join B with result, then C and finally D. Hope...
by reachthiru
Tue Jan 31, 2006 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need best partitioning method for hierarchy mgmt
Replies: 5
Views: 2499

Hi Vincent & Kumar, Thanks for your suggestions. Actually I already did what is told by Vincent. But the sequence that I have mentioned is for testing purpose only, actually I need to write all my final data to a table and I may have to read a million records. OK, this is my logic. First I am so...
by reachthiru
Tue Jan 31, 2006 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup with duplicate values in key column
Replies: 14
Views: 5573

Hi Eze_ke,

As pointed out by Kris, in this case you have to go for join only. Lookup will return only the first matching record. So, you can't get all the duplicate records with Lookup.
by reachthiru
Mon Jan 30, 2006 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need best partitioning method for hierarchy mgmt
Replies: 5
Views: 2499

Need best partitioning method for hierarchy mgmt

Hi, I have a data file with data like this 1,a 1-10,t 1-11,u 1-12,v 1-10-20,x 1-10-25,y 1-11-26,z I need to convert this data as 1,a,1-10,t,1-10-20,x 1,a,1-10,t,1-10-25,y 1,a,1-11,u,1-11-26,z 1,a,1-12,v,,, For this, I created a job like Sequential -> Sort -> Transformer -> Sequential. In the Transfo...
by reachthiru
Fri Jan 27, 2006 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Essbase Connection
Replies: 2
Views: 3571

Hi,

You can refer the link http://ibm.ascential.com/products/connectivity.html regarding the connectivity. But note that most of those PACKs didn't come by default and you have to pay for that.
by reachthiru
Thu Jan 26, 2006 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: Invalid Julian day
Replies: 2
Views: 1780

Hi Ray, Thanks for your prompt reply and wishes for reaching 10000 posts. Probably I haven't phrased my first question properly. I don't want to insert a NULL value to a date field always. What I want is I am reading a field as Varchar and inserting the value to a datetime field in SQL server. The j...
by reachthiru
Thu Jan 26, 2006 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: Invalid Julian day
Replies: 2
Views: 1780

Error: Invalid Julian day

Hi, I have a simple job which loads data from sequential file to SQL Server. For this, I am using a sequential file stage and SQL Server stage respectively. The mapping is 1:1. I am reading all the fields as Varchar, but loading the data as per the requirement. The problem is when I am loading a NUL...
by reachthiru
Wed Jan 11, 2006 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing data from Oracle
Replies: 18
Views: 7250

Hi Bala,

You first check the value of APT_ORCHHOME variable defined at the project level. Please make sure it points to the pxengine folder. If it is correct, what you can do is, copy that value and instead of using APT_ORCHHOME/bin in PATH, u try with the actual value and check it.
by reachthiru
Tue Jan 10, 2006 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequentail file
Replies: 6
Views: 2032

Hi,

I am assuming that those 20 records are being rejected due to NULL value in some columns and there is no NULL handling routines. If so, what you can do is, use the function NullToValue() to set some value.
by reachthiru
Tue Jan 10, 2006 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing data from Oracle
Replies: 18
Views: 7250

Hi, In your environmental variables, you make sure that when you have defined the PATH variable, APT_ORCHHOME/bin is appearing before the ORACLE_HOME/bin folder. You can see this information in the help document. In fact, I also got this error when I wrongly mentioned the values at the job level. Af...
by reachthiru
Tue Jan 10, 2006 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data from Oracle Stage to SQL Svr Stage
Replies: 2
Views: 1686

Hi Balaji,

Yes it worked. Actually yesterday we found out this and removed the 'unicode' value from the Extended column against all the fields and then the job ran successfully. You got it right.

Thanks.
by reachthiru
Mon Jan 09, 2006 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data from Oracle Stage to SQL Svr Stage
Replies: 2
Views: 1686

Error while loading data from Oracle Stage to SQL Svr Stage

Hi, I want to move some data from Oracle to SQL Server thru DataStage. So, I created a parallel job with Oracle Stage and SQL Server Stage. If I pull data directly from an Oracle table, then it is working absolutely fine. But if I use an user-defined query, then I am getting the error while running ...