Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Copy One Database Table to Another 
 

In this section, you will learn to copy one database table to another database table. That means we copy one table to a different table but it contains a similar type of field or column.

 

Copy One Database Table to Another

                         

In this section, you will learn to copy one database table to another database table. That means we copy one table to a different table but it contains a similar type of field or column. These tables aren’t in same database. Both the MySQL databases are different i.e. jdbc4 and jdbcMysql. The "jdbc4" database has "Copyemployee" table and "jdbcMysql" database also has a "Roseindia" table.

To copy the table you need to establish the connection with the MySQL database (jdbcMysql). When the connection is established then sql statement (“INSERT INTO Roseindia SELECT * FROM jdbc4.Copyemployee”) is executed and rows get copied. Once the rows get copied then it will display a message - “number of row(s) affected!”. Whenever any row is not copied then it shows a message -  “Don’t add any row!”.

Syntax for copy table:

“INSERT INTO <new_table_name> SELECT * FROM <Database_name.old_table_name>

Here is the code of program:

import java.sql.*;

public class CopyOneDatabaseTableToAnother {
  public static void main(String[] args) {
    System.out.println("Copy data from one database table to another!");
    Connection conn = null;
    String url = "jdbc:mysql://localhost:3306/";
    String dbName = "jdbcMysql";
    String driver = "com.mysql.jdbc.Driver";
    String userName = "root"
    String password = "root";
    try {
      Class.forName(driver).newInstance();
      conn = DriverManager.getConnection(url+dbName,userName,password);
      Statement st = conn.createStatement();
      //Copy table
      int rows = st.executeUpdate("INSERT INTO Roseinda SELECT * 
                                              FROM jdbc4.Copyemployee"
);
      if (rows == 0){
        System.out.println("Don't add any row!");
      }
      else{
        System.out.println(rows + " row(s)affected.");
        conn.close();
      }
    }
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}

Download this program.

Table Name: Copyemployee(jdbc4)

empId empName empSal
8 AmarDeep 10000
7 Noor 50000
1 Vinod 50000
2 Sushil 80000

Table Name: Roseindia(jdbcMysql)

empId empName empSal
10 Suman saurabh 19000
11 Ravi 25000

Output of this program:

C:\vinod>javac CopyOneDatabaseTableToAnother.java

C:\vinod>java CopyOneDatabaseTableToAnother
Copy data from one database table to another!
4 row(s)affected.

C:\vinod>

After copy table: Roseindia(jdbcMysql)

empId empName empSal
10 Suman saurabh 19000
11 Ravi 25000
8 AmarDeep 10000
7 Noor 50000
1 Vinod 50000
2 Sushil 80000

 

                         

» View all related tutorials
Related Tags: c database query ide table data io column numbers number sum using this id simple tab student university if ie

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

Can we select table from db1 with password "secret" and insert into table in db2 with password "Parent"

Posted by Hema on Friday, 12.19.08 @ 04:42am | #82965

Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.