How to take backup of table in SQL2005

  • pls tell me

    How to take backup of table in SQL2005

  • You don't backup tables in SQL, you backup databases.

    You can export the table as csv, or make a copy of it in another database

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • or if you want a copy just create a execute sql task and write sql query like

    select * into b

    from a

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply