Last restart of SQL Server
Occasionally I need to see what the date of last restart of SQL Server. The old method isto check the...
2010-12-17
1,080 reads
Occasionally I need to see what the date of last restart of SQL Server. The old method isto check the...
2010-12-17
1,080 reads
SAC (Surface Are Configuration) was the great possibility to configure the SQL Server 2005, so there were some options to...
2010-12-17
1,493 reads
2010 is rapidly coming to a close and in retrospect this has been a fantastic year of growth for the...
2010-12-17
1,191 reads
Sent by a friend (yes, it’s a mild fake), but still, shouldn’t someone open a SQL bar or coffee place?
2010-12-17
584 reads
After my call for “What the Business Says Is Not What the Business Wants”, there were quite a few people...
2010-12-17
1,321 reads
Recently some friends invited me to try a BBQ place that they enjoyed, so I went along hoping for the...
2010-12-17
596 reads
A year after the Telegraph reported that Information Commissioner Graham would pledge a fierce approach to the stonewalling approach of...
2010-12-16
1,490 reads
It's not everyday that one of your information vendors decides to change
the format of its data feed. Evidently, today is not every day. It would
be one thing...
2010-12-16
30 reads
It's not everyday that one of your information vendors decides to change the format of its data feed. Evidently, today is not every day. It would be one thing...
2010-12-16
22 reads
It's not everyday that one of your information vendors decides to change the format of its data feed. Evidently, today...
2010-12-16
837 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...
WA:08218154393 Jl. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
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