SQL server Back up

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eldhosejacob
    New Member
    • Aug 2006
    • 2

    SQL server Back up

    how can i take sql server back up
  • vijil
    New Member
    • Jul 2006
    • 14

    #2
    hai friend,
    U can take the back up by executing the following Query.


    backup database db_name to disk='path'

    eg:
    backup database vijil to disk='c:\db_bac kup'

    Comment

    • rdfanta
      New Member
      • Aug 2006
      • 10

      #3
      You can also use Database Maintenance Plan to create a backup and check Integrity and optimize and then shedule these to be reoccuring.

      Comment

      • michelle
        New Member
        • Jul 2006
        • 11

        #4
        You can also go to the directory:

        C:\Program Files\Microsoft SQL Server\MSSQL\Da ta\

        If you want to backup for example the database Northwnd, you will find for this file the extentions: .ldf and .mdf

        You can backup these two files and if you need them again, place the two files back to this directory.

        This is the most simply way to create a backup and it is allways safe.

        Michelle.

        Comment

        • rdfanta
          New Member
          • Aug 2006
          • 10

          #5
          The only problem with this method is that you have to bring down SQL Server to do it.

          Originally posted by michelle
          You can also go to the directory:

          C:\Program Files\Microsoft SQL Server\MSSQL\Da ta\

          If you want to backup for example the database Northwnd, you will find for this file the extentions: .ldf and .mdf

          You can backup these two files and if you need them again, place the two files back to this directory.

          This is the most simply way to create a backup and it is allways safe.

          Michelle.

          Comment

          Working...