Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: RollBack Needed

    You can try BCP in SQL server.

  • RE: RollBack Needed

    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...

  • RE: RollBack Needed

    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...

  • RE: linked server. To use or not to use

    Try replication between the two server.

  • RE: RollBack Needed

    USE [master]

    GO

    ALTER DATABASE [AdventureWorks] SET RECOVERY FULL WITH NO_WAIT

    GO

  • RE: Exporting table with data

    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...

Viewing 6 posts - 1 through 6 (of 6 total)