Results 1 to 4 of 4

Thread: Taking Backup into local disk from server in Sql server management Studio

Hybrid View

  1. #1
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: Taking Backup into local disk from server in Sql server management Studio

    The SERVICE in running on a remote server - and SSMS talks to the service.

    So of course the disks available are SERVER-CENTRIC.

    You could create a share or browse to a url that is on your local machine - such as if your workstation was called \\MYWORKSTATION you would browse to \\MYWORKSTATION\C$ - that's if C$ was an admin share available to the SERVER.

    But more important - why do you want to do this??

    If this is a production server - then you want regularly scheduled backups to occur on only local disks to the server

    If this is a one-off backup then open a share on your workstation that the server can see.

    I've done commands like this to send backups to remote folders

    Code:
    Backup Database TCSHemp To Disk='\\10.14.14.98\tcs folders\ARCHIVE TCS\TCSHemp.F07
    Remember that the backup runs under the USERNAME of the SERVICE running on the remove server - not under your username on the workstation. That's only how you authenticate to connect to the SQL server "service".

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  2. #2

    Thread Starter
    Frenzied Member
    Join Date
    Jan 2009
    Location
    Watch Window(Shift+f9)
    Posts
    1,879

    Re: Taking Backup into local disk from server in Sql server management Studio

    Even i tried to restore the Database it Says an Exception while Executing a Transact-sql statement or batch .Microsoft.Sqlserver.Express.ConnectionInfo
    Kindly see the attachment also .and let me know some the same .any help would be highly appreciated .

  3. #3
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: Taking Backup into local disk from server in Sql server management Studio

    Why don't you move the error popup so we all can see what's under it - why are you trying to restore it - I thought we were discussing backup??

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width