How to copy an entire database to another database.
insert into NewTable from select * from oldTable
This copy entire contents from oldTable to NewTable.
Is there is any query to copy a datable contents like this.
Thanks
Babu.R.K
insert into NewTable from select * from oldTable
This copy entire contents from oldTable to NewTable.
Is there is any query to copy a datable contents like this.
Thanks
Babu.R.K
Comment