Viewing 15 posts - 1 through 15 (of 20 total)
Okay, I think I've got my head round this at last.
What was confusing me was that I was under the impression that Fillfactor affected data pages and the rows in data...
September 15, 2004 at 7:24 am
That is partly right. Fill Factors are disregarded whilst performing standard insert/update/delete operations on a table (otherwise SQL Server would need to do page splits to maintain the original density...
September 15, 2004 at 3:04 am
The value shown for Space Available in EM is unreliable. Try increasing the size of the database and then running:
EXEC sp_spaceused @updateusage = 'TRUE'
It also sounds as though you may...
August 17, 2004 at 6:55 am
Just to clarify, I backed up the log using the WITH TRUNCATE_ONLY option. I'm not aware of any practical difference between that and issuing a CHECKPOINT statement for a db...
August 9, 2004 at 9:57 am
Hi XYZ
I'd be very interested to hear your experiences of the upgrade. Who carried it out? How long did it take? What was the downtime? Was it difficult? What precautions did...
August 9, 2004 at 5:28 am
Well, that will be the problem then. As I mentioned there is a firmware upgrade available which purports to resolve the problem but our suppliers tell us that they have never...
August 6, 2004 at 7:54 am
Oops, sorry about the incomplete post...
I'd be really interested to know if your server has an HP MSA1000 disk controller.
We've been getting these...
August 5, 2004 at 9:04 am
We've been getting these errors at a rate of about one per month for a while now. We believe that the issue is related to our disk controller's...
August 5, 2004 at 8:51 am
Assuming that your text file doesn't contain the identity column values and the columns in the text file are in the correct order, try
BULK INSERT Sport.dbo.game
FROM 'C:\SourceFile.txt' --Change as appropriate
WITH...
August 3, 2004 at 9:31 am
Steve I agree with you that you can't check file size or file space retroactively but backup file size is stored in the backupfile table in the msdb database isn't...
July 23, 2004 at 9:02 am
There is no problem with the set statement where @FilterCmd is concatenated. The problem is in the final select statement. The WHERE clause is incorrect.
July 23, 2004 at 6:53 am
This was a Question Of The Day. You can resort to mixed mode by doing the following:
Stop SQL Service down,
set the value of HKLM\Software\Microsoft\MSSqlserver\MSSqlServer\LoginMode to 2 in the registry,
Restart...
July 23, 2004 at 6:30 am
If you are trying to find any procs that mention SHIPPING_TOTAL try the following:
SELECT DISTINCT SO.name
FROM sysobjects SO
JOIN syscomments SC
ON SO.id = SC.id
WHERE SC.text LIKE '%SHIPPING_TOTAL%'
ORDER BY SO.name
July 22, 2004 at 4:34 am
Thanks for the suggestion but I'm not sure how the File Scripting Object would work. Would it involve doing a Windows copy? If so, it will not be quick enough for our...
July 21, 2004 at 7:35 am
The answer could be either or both. It depends on the nature of the SQL query and the event(s) that you wish to capture.
The SQL:BatchStarting, SQL:BatchCompleted, SQL:StmtStarting and SQL:StmtCompleted events...
July 21, 2004 at 4:04 am
Viewing 15 posts - 1 through 15 (of 20 total)