Forums for Atadore's PromptSQL
Atadore has opened up forums for support and feature requests of its
PromptSQL tool. You can find them on the PromptSQL...
2006-01-26
1,357 reads
Atadore has opened up forums for support and feature requests of its
PromptSQL tool. You can find them on the PromptSQL...
2006-01-26
1,357 reads
In reading Gianpaolo Carraro's blog I came across this entry: The architect greatest trick?!
In it he's talking about having seen...
2006-01-26
1,548 reads
My box of books arrived today! For me, a first-time author (actually co-author), this is very surreal. I remember it was...
2006-01-25
1,330 reads
Sometimes those connection problems come in the most interesting ways.
I took a few minutes over lunch today to try...
2006-01-24
1,390 reads
Sometimes you must "convert" a column or variable from one data type to another. For example, if you want to...
2006-01-23
1,809 reads
I had a couple people ask about the move after my editorial, but my wife doesn't like the address to...
2006-01-20
1,548 reads
I had the opportunity recently to take a look at PromptSQL and offer a
review on it. That review hit SSC.com's...
2006-01-18
1,434 reads
As if it weren't enough that I was moving my home, the SSC site is also moving. I'll drop some...
2006-01-18
1,425 reads
I decided to commit to the book, so I'm waiting on some information and a contact from my co-author and...
2006-01-12
1,461 reads
This actually premiered on Channel 9 right before Christmas. It is an
interview with Rob Short, a Microsoft VP in charge...
2006-01-07
1,512 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