Rights within the database
This is a follow-on to my post What are the actual rights?
First and foremost, I want to include membership in...
2006-03-14
1,419 reads
This is a follow-on to my post What are the actual rights?
First and foremost, I want to include membership in...
2006-03-14
1,419 reads
One of the things I've started to work on are some scripts to quickly
be able to pull what a user's...
2006-03-14
1,447 reads
Catching up on recent updates for tools I've looked at and/or recommended.
SQL Server Tools:
PromptSQL is now up to version 1.4....
2006-03-13
1,569 reads
I received a copy of Professional SQL Server 2005 Integration Services
a few weeks back from Kathi. Because of illness and...
2006-03-13
1,485 reads
I think anyone who posts actively in the various on-line forums for
Microsoft products (such as SSC.com) hopes one day to...
2006-02-23
1,372 reads
One of the blogs I most enjoy reading is Life Beyond Code.
This blog allows me to take off my technology...
2006-02-18
1,445 reads
In the tradition of many others, I decided to add a reading list to my professional site. The reading list...
2006-02-16
1,423 reads
I've been out of pocket and off the forums for the last few weeks as
we've had several major tasks where...
2006-02-15
1,371 reads
I saw this on Greg Hughes' blog
and wondered, "What in the world?" So I took a look. It's one of...
2006-02-10
1,431 reads
I've been thinking about doing this for a whole and I finally got
around to building a reviews section into the...
2006-02-08
1,479 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers