2018-10-04
61 reads
2018-10-04
61 reads
2018-10-03
44 reads
Is an index change equivalent to a code change? Steve Jones asks the question and has a few thoughts.
2018-10-02
187 reads
With the need to remove older data, Steve thinks natural keys may be obsolete.
2018-10-01
224 reads
With lots of news coming out of Ignite, Steve talks about a few of the changes.
2018-10-01
61 reads
Do we need the right tool or just a tool? A guest editorial from Andy Warren gives a few thoughts on getting things done effectively.
2018-09-28
72 reads
Thanks for improving the string or binary data truncated error message.
2018-09-27
185 reads
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
75 reads
2018-09-24
77 reads
2018-09-24
152 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...
Hub Cs:08218154374 Jl. H. Agus Salim No.10 A, Sawahan, Kec. Padang Tim., Kota Padang,...
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...
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