Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
rajnish_k9
Starting Member
1 Post |
Posted - 2006-06-13 : 10:10:32
|
| Hi all, i have a question regarding data comparison in two tables in same database with same table structure.my table structure is like thisCREATE TABLE xxgfs_gen_text_lookups_new ( lookup_type VARCHAR2(200) NOT NULL, region_code VARCHAR2(30), nongfs_value1 VARCHAR2(200), nongfs_value2 VARCHAR2(50), nongfs_value3 VARCHAR2(50), gfs_value1 VARCHAR2(200), gfs_value2 VARCHAR2(50), gfs_value3 VARCHAR2(50), retain_nongfs_for_dflts VARCHAR2(1), retain_gfs_for_dflts VARCHAR2(1), comments VARCHAR2(500), created_by NUMBER(15), creation_date DATE, last_updated_by NUMBER(15), last_update_date DATE, last_update_login NUMBER(15), Source_description varchar2(300), Oracle_description varchar2(300), defaults varchar2(300) )ALTER TABLE xxgfs_gen_text_lookups ADD CONSTRAINT xxgfs_gen_text_lookups_uq_1UNIQUE (lookup_type,region_code,nongfs_value1,nongfs_value2,nongfs_value3);i have some data in excel which i have uploaded using sql*loader using control card.Now i want to compare the data in both tables having same table structure onlydo any body having idea how to compare the data using storeprocedure.thanks in advanceregs, Rajnish kumar |
|
|
RyanRandall
Master Smack Fu Yak Hacker
1074 Posts |
|
|
arragon
Starting Member
1 Post |
Posted - 2010-04-16 : 03:51:10
|
| You may also be interested in [url]http://www.citrustechnology.com/solutions/data-comparison[/url] for cross-database comparisonDavewww.citrustechnology.com |
 |
|
|
|
|
|
|
|