is there any way for us to download the MDF and LDF files for SQL Server?
Thanks.
is there any way for us to download the MDF and LDF files for SQL Server?
Thanks.
No, but you can request the BAK file, or is you REALLY need the MDF/LDF, we can detach the DB and put them in your home directory. Via ticket request.
[QUOTE=Stephen]
No, but you can request the BAK file, or is you REALLY need the MDF/LDF, we can detach the DB and put them in your home directory. Via ticket request.
[/QUOTE]
If I detach my DB through Enterprise Manager, how would that affect my database? I believe I did that once and it made my database unavailable.
With the BAK file, I can restore the database with it right?
Thanks for the reply.
Yes detaching will make the DB unavailable, but a BAK file will basically merge the MDF/LDF into one restorable file.
However one point to remember, the easiest way to restore a DBis if the tables are all owned by dbo,NOT user.tablename, if the tables are user.tablename you will have all kindsof errors on the restored sideabout tables not existing.
Can we do the scripting and export thing here.
Just curious, so we could duplicate outside for testing.
[QUOTE=Stephen]
Yes detaching will make the DB unavailable, but a BAK file will basically merge the MDF/LDF into one restorable file.
However one point to remember, the easiest way to restore a DBis if the tables are all owned by dbo,NOT user.tablename, if the tables are user.tablename you will have all kindsof errors on the restored sideabout tables not existing.
[/QUOTE]
Stephen,
Aside from DTS, what is the best way to backup a database without the help of JodoHost?
Thanks.