Viewing 15 posts - 736 through 750 (of 7,466 total)
As already stated, a unique index or a unique constraint are your options
ref:...
September 7, 2021 at 7:21 am
Even when adding a new file to a filegroup, SQLServer will not balance the content of that filegroup to all files of that filegroup just like that.
If you would want...
September 3, 2021 at 9:03 am
You cannot reclaim disk space without shrinking the database, except for tempdb which is being reset to its original size after stop/start of the instance.
Alternative is to create a new...
September 1, 2021 at 7:16 am
Indeed, Jeff.
Those were the timing for the migration of the tables.
I'm still working to see if the applications actually have performance gains too.
Gut feeling says it should, but we'll only...
August 26, 2021 at 5:54 am
I prepared all filegroups and files and preallocated the needed space.
These are the results of my test on my test server ( old + slow spindles )
August 24, 2021 at 7:14 am
wow, Thank you Jeff, for your tests and posting the results.
As always, YMMV, so only own situation tests will provide a good insight.
Hoping such tests confirm the handed numbers and...
August 23, 2021 at 9:07 am
August 23, 2021 at 8:30 am
They are still image and text data types (legacy industrial tech "we will not change it for you" salesperson ). Out of row by default if I'm correct., but indeed,...
August 20, 2021 at 12:48 pm
That's indeed what I've been thinking, but I have not that much experience when it comes to storing LOBs ( up to 1GB ) in the database, so I've been...
August 20, 2021 at 11:48 am
also keep in mind , if you are able to extract the deadlock xml (copy/past into a .xdl file), SentryOne PlanExplorer has a nice "replay" feature that shows the sequence...
August 20, 2021 at 11:39 am
How about
/* generate DDL */
exec sp_msforeachdb '
Select ''
USE [?]
GO
CREATE DATABASE AUDIT SPECIFICATION [DatabaseAuditSpecification-DatabaseA]
FOR SERVER AUDIT [ServerAuditName]
ADD (INSERT ON DATABASE::[?] BY [dbo]),
ADD (SELECT ON DATABASE::[?] BY [dbo]),
ADD (DELETE...
August 20, 2021 at 11:36 am
What's the condition on which you determine which hour to be returned ?
August 20, 2021 at 11:32 am
I just encountered this picture which also applies to our line of duty ...
August 19, 2021 at 9:15 am
Some monitoring softwares will show blocking in the engine and may get you on track detangling such issues.
If you think (b)locking is the issue, you may even want to try...
August 17, 2021 at 1:09 pm
Keep your data catalog correct and disable an index if you want to re-enable it later!
This way, persons investigating "troubles" will know someone performed this action on purpose ( as...
August 5, 2021 at 7:54 am
Viewing 15 posts - 736 through 750 (of 7,466 total)