Viewing 6 posts - 1 through 6 (of 6 total)
Yes there are lot of way we can import data from server to excel to server.
You can try BCP that is good idea to import data from table to excel...
November 29, 2011 at 1:36 am
you have the backup of that database. You have chance to get you table data from it.
restore the database in different name and get the information from that database table...
November 29, 2011 at 1:34 am
Try replication between the two server.
November 29, 2011 at 1:25 am
USE [master]
GO
ALTER DATABASE [AdventureWorks] SET RECOVERY FULL WITH NO_WAIT
GO
November 29, 2011 at 1:08 am
This is not a correct way but you can do at server at rest time.
Take the select * from table output in excel.
open the database choose the table Right Click...
November 29, 2011 at 1:06 am
Viewing 6 posts - 1 through 6 (of 6 total)