aspose file tools
The moose likes JDBC and the fly likes comapre two DB conntaction/schema Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "comapre two DB conntaction/schema" Watch "comapre two DB conntaction/schema" New topic
Author

comapre two DB conntaction/schema

Kaustubh G Sharma
Ranch Hand

Joined: May 13, 2010
Posts: 1145

Hi,

I am using sqldeveloper. Want to know how could i compare two different connection/schema. holding same type of tables. I need to comapre values from both schema and try to figureout difference

Thanks
KS


No Kaustubh No Fun, Know Kaustubh Know Fun..
Martin Vajsar
Bartender

Joined: Aug 22, 2010
Posts: 2332
    
    2

Do you need to compare rows in two tables that have the same columns?

I'd use the SQL MINUS operator:
This is just the easiest. A more sophisticated compare might also list rows that have the same primary key but differ in other columns. You'll be much safer if you enumerate the columns instead of using * (see Always use column list).

If the two tables reside on the same database in different schemas, do the compare using an account that was granted the SELECT privilege on both tables. If the two tables reside in different databases, you have several options:

1) Create a database link and run the "minus" queries using the link,
2) Use data pump (expdp/impdp) to bring the two tables into one database, so that you can compare them,
3) Export the data somehow into text/csv files and compare them using different tools (diff, excel or the like).
Kaustubh G Sharma
Ranch Hand

Joined: May 13, 2010
Posts: 1145

Thanks Martin
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: comapre two DB conntaction/schema
 
Similar Threads
wife and life!
NaN reference
Assertion for Date
How To compare two excel sheets using java
Comparing Two EL Expressions