Setting the Default View on a SharePoint Library
There could be a number of reasons why you would want to change the default view on a SharePoint library....
2013-10-08
769 reads
There could be a number of reasons why you would want to change the default view on a SharePoint library....
2013-10-08
769 reads
Thank you to everyone who attended my webinar on SSIS Tips and Tricks on October 3, 2013. The link to...
2013-10-14 (first published: 2013-10-07)
3,668 reads
Being able to manage the content types in your SharePoint libraries is key to creating a useful portal. Among the...
2013-10-02
2,819 reads
On Thursday of this week I will be presenting a webinar for Pragmatic Works Free Training on the T’s. I...
2013-10-02
944 reads
Quickly setting up a domain controller is a vital step in creating a good demo environment. This post will walk...
2013-10-02
2,032 reads
There are a number of data types that are currently unsupported on PDW. Among those are SQL_VARIANT. The interesting part...
2013-09-06
1,166 reads
Thank you to everyone who attended my free webinar on August 29, 2013 where I talked about using the Data...
2013-08-29
2,873 reads
Not too long ago I ran into a crazy situation where just about everything that could have gone wrong with...
2013-08-27
1,576 reads
CTP 1 of SQL Server 2014 was released this evening. If you have an MSDN or TechNet account you can...
2013-06-25
679 reads
Power View was a new reporting option added in the SQL Server 2012 release as part of the SharePoint integrated...
2013-06-11
1,869 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