How to copying from one DB table to another DB table 
Author Message
 How to copying from one DB table to another DB table

How can you copy from one database table to another database table.  I have
two databases that I like to transfer a copy of the entire table of.  Is
there a fast or easy way to do this?

If you know of a way, can you email me any examples or tell how to do it?

PS. I'm using RDO as my database connection method
--
Chris Barger
L3 Communications - Satellite Transmission System
Digital Systems Division
Voice (516) 272-5796



Fri, 15 Sep 2000 03:00:00 GMT  
 How to copying from one DB table to another DB table

You can use a SQL statment that appends records from one table to other
(the INSERT INTO ...) command, for accessing another database you can use
the IN clausse, something like :   "INSERT INTO tblClient IN "\My
Documents\Databases\new.md" SELECT * FROM tblSource .."

--
Coatl
Alberto Borbolla
Tecnologa en Sistemas
Mexico

(To send e-mail remove the "X" from mail)



Quote:
> How can you copy from one database table to another database table.  I
have
> two databases that I like to transfer a copy of the entire table of.  Is
> there a fast or easy way to do this?

> If you know of a way, can you email me any examples or tell how to do it?

> PS. I'm using RDO as my database connection method
> --
> Chris Barger
> L3 Communications - Satellite Transmission System
> Digital Systems Division
> Voice (516) 272-5796




Fri, 15 Sep 2000 03:00:00 GMT  
 How to copying from one DB table to another DB table

Check out the SELECT INTO statement

Quote:

>How can you copy from one database table to another database table.  I have
>two databases that I like to transfer a copy of the entire table of.  Is
>there a fast or easy way to do this?

>If you know of a way, can you email me any examples or tell how to do it?

>PS. I'm using RDO as my database connection method
>--
>Chris Barger
>L3 Communications - Satellite Transmission System
>Digital Systems Division
>Voice (516) 272-5796




Mon, 18 Sep 2000 03:00:00 GMT  
 How to copying from one DB table to another DB table

You can also use a CREATE TABLE Table2 as select * from table1;



Quote:
> Check out the SELECT INTO statement


> >How can you copy from one database table to another database table.  I
have
> >two databases that I like to transfer a copy of the entire table of.  Is
> >there a fast or easy way to do this?

> >If you know of a way, can you email me any examples or tell how to do
it?

> >PS. I'm using RDO as my database connection method
> >--
> >Chris Barger
> >L3 Communications - Satellite Transmission System
> >Digital Systems Division
> >Voice (516) 272-5796




Mon, 18 Sep 2000 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Copying Tables from one DB to another DB

2. Copy table from one db to another db with vb5

3. Copy Access/Oracle table from one DB to another DB.

4. Copy table schema and data from one DB to another DB

5. How to copy table from DB to DB?

6. copy runtime a table from db a to db b

7. Copying table from DB to DB in VB

8. Copy a table from one db to another

9. Copy a table from one password protected db to another

10. MS Access DB - Copy Table A from Database A to Table A Database B

11. Exporting Tables From One Access DB to a New One

12. Copying data from one DB to another DB

 

 
Powered by phpBB® Forum Software