Hi,
How can i copy one table from a database located on one server to another database located on an other server .
Thanks for your help and samples ,
Philippe
COPY SQLTABLE from 1 SERVER to ANOTHER
- nageswaragunupudi
- Posts: 10729
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 10 times
- Contact:
Re: COPY SQLTABLE from 1 SERVER to ANOTHER
Very easy if you use FWH built-in MySql library.
Code: Select all | Expand
oServer1 := maria_Connect( .... )
oServer2 := maria_Connect(....)
// now copy from oServer1 to oServer2
oCn:CopyTableToServer( cTableName, oServer2 )
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: COPY SQLTABLE from 1 SERVER to ANOTHER
Thanks for this answer but i 'll a sample for Microsoft MS SQL Server .
Thanks
Philippe
Thanks
Philippe