Moving Objects to a New Schema
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-28 (first published: 2018-09-20)
6,568 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-28 (first published: 2018-09-20)
6,568 reads
I’ve never been to Pittsburgh. Actually, in all of my speaking and traveling, I don’t think I’ve even flown through...
2018-09-28
969 reads
One of the very interesting parts of my job is that I run into UK keyboards on a regular basis....
2018-09-28
1,012 reads
2018-09-28
647 reads
Thanks for improving the string or binary data truncated error message.
2018-09-27
185 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,133 reads
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
75 reads
2018-09-26
580 reads
Today I hosted a webinar with Gene Kim (@RealGeneKim) and we had a fantastic discussion. I was slightly star struck...
2018-09-25
248 reads
If you have a schema you want to retire, here's a method for moving all objects inside that schema to a new one.
2018-09-25
48,103 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Comments posted to this topic are about the item BIT_COUNT II
Comments posted to this topic are about the item I Can't Make You Learn
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
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