Viewing 15 posts - 31 through 45 (of 181 total)
Check your ERRORLOG for details to see if you find anything in there. Sounds to me like like its waiting for another DB backup to complete for the same database. Check...
February 14, 2006 at 10:39 am
This should help you:
http://www.databasejournal.com/features/mssql/article.php/2228611
Transfering logins correctly will transfer roles as well.
February 9, 2006 at 12:52 pm
I think in todays Volatile world of IT, it would be hard to imagine that a DBA is purely fullfilling only DBA roles. Today a DBA needs to wear more hats...
February 2, 2006 at 3:14 pm
Hi Guys,
Steve, I could switch traffic to the standby DB and rebuild this server - but for now I think I will just go with expanding the partition.
Rahul, I had...
January 31, 2006 at 7:26 am
You should put SQL Server on its own server and then create a backplane between SQL Server and your webserver, so that only internal traffic follows between the SQL Server...
January 24, 2006 at 9:21 am
Martin is right. Try scheduling something like this to run on a regular basis that will clear backup history older then X days, change 60 days to one of your...
January 10, 2006 at 10:45 am
Put db in single user mode and then try the dettach.
January 10, 2006 at 10:36 am
If you just want to see what recovery model the DB is running in you can simply issue the following command -
exec sp_helpdb db_name
besides other DB information - it will list...
January 9, 2006 at 8:23 am
1. You could change the job step type to Operating System Command (CmdExec) and use Osql.exe utility to send the results to an output file.
2. Check SQL server error log...
January 9, 2006 at 8:10 am
REINDEX is far more efficient in my opinion, especially where fragmentation on clustered indexes is concerned. But ofcourse it has a lot of overheads. So normally what I practice is...
January 9, 2006 at 7:55 am
As Steve mentions - Backup and Recovery are key to any Database. Before you decide what revovery model your database should run it - you need to get a a...
December 29, 2005 at 11:39 am
The whole point of the diff backup is that after you restore the full backup, you do not have to apply each trans log still the point in time -...
December 29, 2005 at 11:30 am
I believe with the new faster disks, you are not going to see a huge diff with defraging at the OS level, unless your DB is contantly growing and shrinking. ...
December 29, 2005 at 11:19 am
Viewing 15 posts - 31 through 45 (of 181 total)