Viewing 15 posts - 76 through 90 (of 185 total)
1. Stop your SQL server if it is runnig
2. Run command prompt (click start then run, type cmd then click OK)
3. Type...
September 23, 2009 at 11:44 am
Of course you can do it:
BACKUP DATABASE MyDatabase TO DISK = '\\myserver\myshare\MyDatabase.bak' WITH INIT
Do not forget to provide the folder level permissions on a shared folder (myshare in my example)...
September 23, 2009 at 11:25 am
Everything is possible,:-) but probability of this situation is very low if your SQL login's password are strong and long enough.
I would say 12 characters with numbers, capital letters, etc....
September 23, 2009 at 11:12 am
So, create a scheduled job and use a statement TRUNCATE TABLE Your_Table_Name
as a Step of this job.
Don't forget to replace a table name with a real one in...
September 23, 2009 at 10:59 am
Krasavita (9/23/2009)
DB:MB Day1 Day2
Data 732 805
Logs 837 837
This db is growing, is it ok that logs are bigger than data? If not how can I fix it.
If you want to...
September 23, 2009 at 6:51 am
How to restore your database to Point-in-Time:
http://www.databasejournal.com/features/mssql/article.php/3530616/Point-in-Time-Recovery.htm
September 23, 2009 at 6:45 am
Thank you for update.
September 23, 2009 at 6:15 am
I would recommend to place your question also on a RedGate SQL Backup forum, usually they are very responsive.
September 22, 2009 at 1:01 pm
I would give the head user the db_securityadmin fixed DB role.
Then db_securityadmin can manage fixed database roles membership (db_datareader, db_datawriter, etc., but not db_owner) on database level only. He...
September 22, 2009 at 12:28 pm
Chris Howarth-536003 (9/22/2009)
September 22, 2009 at 11:50 am
Silverfox (9/22/2009)
September 22, 2009 at 11:28 am
mathewspsimon (9/22/2009)
September 22, 2009 at 11:13 am
So, Your line of code should be like that:
EXECUTE master.dbo.xp_delete_file 0,N'\\cmsphdb\sqlbackups\',N'trn',N'2009-09-21T09:23:16',1
September 22, 2009 at 10:55 am
Do you mean "How to attach database?"
Right click on Databases->Attach and then point to the .mdf file.:-)
September 22, 2009 at 9:15 am
Viewing 15 posts - 76 through 90 (of 185 total)