Viewing 15 posts - 1 through 15 (of 27 total)
This is not a bug, but expected behavior. You said you ran the following command:
BACKUP LOG
May 24, 2018 at 7:02 am
Thanks for the informative article! I realize that this article is almost a year old, but I have a few questions that I'm hoping you can help me with.
I...
April 10, 2015 at 2:11 pm
I've seen similar symptoms occur when deleting rows from a heap table (table with no clustered index). This describes the workaround: http://support.microsoft.com/kb/913399
Kevin
June 2, 2011 at 3:27 pm
how much acid required in final 3% mixture: 10oz * .03 = .3oz of acid
how much of 10% mixture will it take to make .3oz of acid: x...
January 7, 2011 at 8:36 am
We did some pretty intensive benchmark testing and found that our test workload (which included insert/select/update statements as well as bulk inserts, dbcc checkdb, and backups/restores) which was run using...
July 25, 2008 at 8:05 am
How about this:
SELECT [name]
FROM master.dbo.sysdatabases
WHERE CAST(DATABASEPROPERTY([name], 'IsOffline') as int) = 1
ORDER BY [name]
January 15, 2008 at 1:46 pm
Another option would be to turn the database "auto close" option on for each database you want to monitor. Then a "starting up database xxxxx' message will be logged...
October 26, 2007 at 8:19 am
It's hard to tell what may have caused it after the fact, but I'd suspect blocking.
The log files don't show blocking, but you can use sp_who2 and look at...
July 23, 2007 at 2:57 pm
did you check to see if the insert is being blocked by another spid?
July 23, 2007 at 2:30 pm
I believe that if your SQL Server was installed with a case-sensitive collation, the login name must be specified with the exact same case as how the Windows user account was...
June 8, 2007 at 2:40 pm
Maybe there's some confusion due to the fact that pre-SP2 versions of SQL Server are not supported on Windows 2003.
May 1, 2007 at 8:14 am
It's not always possible to use TRUNCATE since you may not want to remove all rows, and it's not always feasible to use a TABLOCK hint due to blocking concerns. ...
March 20, 2007 at 9:20 am
Not sure if this may apply to you, but there is a bug that prevents space from being released after a delete if the table doesn't have a clustered index. This...
March 20, 2007 at 8:10 am
use
restore
filelistonly from disk = 'D:\Microsoft SQL Server\test1'
to see the logical and physical filenames...
June 23, 2006 at 12:00 pm
We've seen it not install on all nodes in a clustered environment. It doesn't give an error message...it says it was successful, but "select @@version" shows 8.00.2039 instead of 8.00.2040...
February 23, 2006 at 9:15 am
Viewing 15 posts - 1 through 15 (of 27 total)