Search found 238 matches

by dodda
Tue Aug 05, 2008 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema comparison
Replies: 15
Views: 6958

Hello Vasu

Thanks for your reply.since one is production database and another is backup database they have the same metadata while comparing the same table but we have 122 tables with each pair having different metadata

Thanks
by dodda
Tue Aug 05, 2008 8:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema comparison
Replies: 15
Views: 6958

Schema comparison

Hello, I have a requirement where i have to compare two databases one is backup database and other one is prod database. We have around 120 tables in each database schema and we have to produce delta by comparing those tables. Is there a optimal to do this. I am thinking of change capture stage. but...
by dodda
Fri Aug 01, 2008 12:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle read
Replies: 1
Views: 769

oracle read

Hello In oracle stage if we use Read Method=Table and Table=Tablename will be able to generate an automatic sql query so that we dont have to define the columns. Is there a way that i can get all the column names just by specifying the Tablename so that i dont have to define all the columns. Appreci...
by dodda
Fri Aug 01, 2008 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database comparison
Replies: 8
Views: 2410

Hello

i need to compare the two tables row by row and i need to output the difference. i need to capture what is changed between those 2 tables.

Thanks
by dodda
Fri Aug 01, 2008 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database comparison
Replies: 8
Views: 2410

Database comparison

Hello

I have a requirement where we have to compare two tables of same structure from different databases. we have to compare almost 200 tables. The tables we need to compare have the same structure but each table will be of different structure. Do we have create 200 jobs or is there a best approach?
by dodda
Thu Jul 24, 2008 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to date
Replies: 1
Views: 1389

String to date

Hello I have a problem while converting string to time stamp. Source is falt file and target is flat file and i am using transformer. In the source i am taking the string which is varchar(8) and in the format YYYYMMDD and want to populate into the target file with date format YYYY-MM-DD. I have used...
by dodda
Tue Jul 22, 2008 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Fileset
Replies: 2
Views: 1347

Lookup Fileset

Hello, I have a clarification on lookup fileset. I have a requirement in which i need to generate a lookup file set which will be used later for the lookup. My question is how many records we can store in lookup file set. Will there be any performance issues based on number records we use to generat...
by dodda
Tue Jul 22, 2008 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Leading zero's infront for negative values
Replies: 2
Views: 883

Leading zero's infront for negative values

Hi eveyone, I need some help regarding appending the leading zero's infront for negative values My source file is a simple text file , which has a column QT of integer type of length 6. The input data for QT is like 888 -3456 12 -22 And i have to map column QT to QTY with leading zeros and the targe...
by dodda
Tue Jul 08, 2008 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ
Replies: 0
Views: 512

MQ

Hello I have a file with 10 records with each record length 600 bytes. My requirement is i need to read the file and based on constraints i need to split the records into two streams and write them into 2 MQs. The approach we adopted was to first split the records and write them into two intermediat...
by dodda
Wed Jun 25, 2008 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Routine as a parameter in the user defined SQL
Replies: 1
Views: 1123

How to use Routine as a parameter in the user defined SQL

Hi, I have a User defined sql in oracle oci stage which extarcts the values based on begin and end date condition E.g to_char(Begin_date,'YYYY-MM-DD')>=(#prev_month_begin_date#) and to_char(End_date,'YYYY-MM-DD')>=(#prev_month_End_date#).There are 2 routines which calculates the value define in para...
by dodda
Wed Jun 25, 2008 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import warning with sequential file
Replies: 3
Views: 1642

Import warning with sequential file

Hi all, I need some help regarding importing the .txt file to my unix server. I FTP the file from my system to unix server. Here iam using a WINSCP tool for FTP purpose. Here iam using sequential file as a source . The following are the warnings iam getting while i run the job. 1.Testdata,0: Missing...
by dodda
Wed Jun 18, 2008 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select query
Replies: 2
Views: 918

select query

hello i am writing a simple select query from oracle database by using oracle enterprise stage. select null as DATA from DB_SHP_DT i defined DATA as column name and i want null values in the column. I am extracting the data from database and writing it to dataset. when i tried to execute its getting...
by dodda
Mon Jun 16, 2008 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Selection Issue
Replies: 7
Views: 2168

I FOund out the Problem.The Issue was Very Simple the User Defined Query contains Repetive Column which is Causing the Error.Thanks all for Participating in this ISSUE.
by dodda
Mon Jun 16, 2008 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing the file based on the string in the file.
Replies: 12
Views: 2780

Thanks for your immediate reply.Thanks a lot.

It's working fine now. This solves my problem.
by dodda
Mon Jun 16, 2008 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing the file based on the string in the file.
Replies: 12
Views: 2780

i tried in the command prompt as


>= `grep -i "FOOTER_FILE" /home/user/dsstage/test/Input.txt|wc -l`

It throws an error. ksh not found.

but i tried as
> grep -i "FOOTER_FILE" /home/user/dsstage/test/Input.txt|wc -l

It results 1. without blackquote it's is working fine.