Viewing 15 posts - 61 through 75 (of 278 total)
Roy,
thanks for your answer.
I already tried that. Trying to set the distribution database offline will hang forever, because it is being blocked by some of...
May 11, 2010 at 8:52 am
"around 11 gb of data on their personilized desktops." on a production SQL Server??? I didn't even mention to look into this because i assumed that there *should* be no...
April 28, 2010 at 9:45 am
Usually the C drive should only be reserved for Windows. Any other Application, including SQl should be installed on, lets say D with the Database files on others.
You...
April 28, 2010 at 9:28 am
We have a database DDL trigger in place that records any changes made to any object. This allows to rapidly go back to a previous version if something breaks. Developers...
April 28, 2010 at 7:56 am
homebrew01 (4/26/2010)
Lynn Pettis (4/26/2010)
Also, I hope you duly noted that I RECOMMENDED AGAINST changing the recovery model to SIMPLE and back to FULL.
So ... you would advise against creating a...
April 26, 2010 at 1:10 pm
... just realized that when I saw your post... 🙂
In any event, seems the OP has other issues at hand here....
April 23, 2010 at 10:33 am
You might want try running that dmv with the 'LIMITED' option:
FROM sys.dm_db_index_physical_stats (DB_ID(' DB '),OBJECT_ID(' Table'A' '),NULL, NULL, 'LIMITED')
as it will have better performance, specially if it is a big...
April 23, 2010 at 9:41 am
Dave, great article. very detailed and nicely outlined. Kudo's......
April 21, 2010 at 8:49 am
You can also use 3rd party backup software like Quest LiteSpeed, Red Gate SQL Backup Pro or Idera SQL Safe backup which allow you to get a compression of about...
April 16, 2010 at 1:42 pm
I know that, but when you have a TB database size, compressed down to about 207GB... that still would be about 52 files!!!!
April 15, 2010 at 1:03 pm
Toby White (4/12/2010)
April 15, 2010 at 9:52 am
Gary,
what disks are those? 30 hours for 550GB seems to be EXTREMELY slow. We backup natively with SQL 1 TB in about 2.5 hours on our SAN.
...
April 12, 2010 at 2:19 pm
....an even scarier thought is such a long database recovery chain.... if any of the log backups in the interim is kaputt, you can only go back as far as...
April 12, 2010 at 1:54 pm
You should probably just leave the default format and pick out the columns you need:
DECLARE @tasklist TABLE (taskname NVARCHAR (500))
INSERT INTO @tasklist
EXEC xp_cmdshell 'tasklist'
DELETE FROM @tasklist WHERE taskname IS NULL...
April 12, 2010 at 10:05 am
Viewing 15 posts - 61 through 75 (of 278 total)