Link to home
Start Free TrialLog in
Avatar of Gospodin Rasputin
Gospodin Rasputin

asked on

How to grab a copy of my sql 2012 database

I am no database administrator but our support company has requested we send them a copy of the sql database to our support company to help them investigate a fault on the system.

Can someone point me to a step by step on how to take a copy of an sql databse?
Thank you
ASKER CERTIFIED SOLUTION
Avatar of Deepak Chauhan
Deepak Chauhan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or if you already have a backup maintenance plan just send them the last full backup file. They'll be able to restore it in their environment.
Avatar of Gospodin Rasputin
Gospodin Rasputin

ASKER

Thanks that worked like magic. I also discovered their application has a DBMgmttool which I could use the following command (similar to yours above) from within the application installation directory so it backs up and zips the database:
DBMgmttool /BACKUP
    /AUTO
    /SERVER=<SERVER NAME>
    /DATABASE=<Database Name>
    /USER=<Application's user name>
    /PASSWORD=<Application's Users Password>