Some Ways To Look For Things in SQL Server Modules
If you have a medium to large database in SQL Server, with lots of stored procedures, functions or views, it...
2009-11-23
510 reads
If you have a medium to large database in SQL Server, with lots of stored procedures, functions or views, it...
2009-11-23
510 reads
I can’t wait until Feb 27 when Code Camp is right in my backyard! I just submitted my session for...
2009-11-23
350 reads
My presentation and sample files from SQLSaturday in Orlando are now online for you to download. Check them out at...
2009-11-23
518 reads
Many times when I'm teaching a class or working with a group, they express frustration at the load time for...
2009-11-23
417 reads
Everyone likes to get a project done, but many times in our rush to deploy we bypass some of the...
2009-11-23
419 reads
I haven’t done a car update in some time, and I’d like to get back to them. Surprisingly quite a...
2009-11-23
723 reads
A common question I've been asked a lot lately is how to replace the icon in the Report Manager to...
2009-11-22
14,736 reads
We often take the advice given to us on forums or in articles at face value. Even though the authors...
2009-11-20
4,244 reads
Not all DBAs have the opportunity to attend formal classroom training or attend conferences. While there are many SQL Server...
2009-11-20
936 reads
At most large companies one business requirement is that all reports have the same look and feel. This may vary...
2009-11-20
12,572 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...
Telp Cs: 08218200233 Jl. Merdeka No.39, Proklamasi, Kec. Siantar Bar., Kota Pematang Siantar, Sumatera...
Telp Cs: 08218200233 Jl. Asia, Simpang, Jl. Bakaran Batu No.1 C, Sei Rengas II,...
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