When Does Index Size Change Index Choice?
Erik purposely fragments indexes trying to slow down queries.
2018-02-15
3,508 reads
Erik purposely fragments indexes trying to slow down queries.
2018-02-15
3,508 reads
2018-02-06
978 reads
2018-06-07 (first published: 2018-01-13)
2,379 reads
2018-06-15 (first published: 2018-01-04)
2,099 reads
2017-11-02
1,047 reads
Erik Darling shows that if you take SQL Server's word when it asks for an index, things can go horribly awry.
2017-10-09
4,023 reads
2017-04-20
1,248 reads
This report shows all the Indexes on user defined table or view and how effectively they are being used in our project.
2017-04-20 (first published: 2017-04-10)
902 reads
In an effort to make leading wildcard searches sargable, Aaron Bertrand plays around with a trigram-type implementation in SQL Server.
2017-02-28
5,792 reads
This script will list all missing indexes with create statements.
2017-03-01 (first published: 2017-02-24)
1,345 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers