MDS 2016 CTP 2.3: tiles greyed out in Manager
I’m toying around with MDS 2016 CTP 2.3 in preparation of my SQLServerDays session about what is new for BI...
2015-09-15
822 reads
I’m toying around with MDS 2016 CTP 2.3 in preparation of my SQLServerDays session about what is new for BI...
2015-09-15
822 reads
When you are developing for the Microsoft Business Intelligence stack, you always needed Visual Studio for your business intelligence (SSIS,...
2015-09-10
1,132 reads
I’ll be giving an SSIS webinar for MSSQLTips.com on Tuesday 15th September 2015.
The title is SQL Server Integration Services Best...
2015-09-14 (first published: 2015-09-08)
2,663 reads
As a lot of features, Report Builder will improve as well in SQL Server 2016. At the moment of writing CTP 2.3...
2015-09-07
5,063 reads
I was toying around with the new SQL Server 2016 CTP release and I wanted to run a few SSIS packages...
2015-09-03
5,484 reads
I have the great pleasure to announce that I have been nominated for the “Author of the Year 2015” award...
2015-09-02
408 reads
A new monthly release of the SQL Server 2016 preview has been released: CTP 2.3.
You can find the download here (the...
2015-09-01
845 reads
Anyone working with SSIS and Excel probably had the following issue: you are creating an SSIS package using an Excel...
2015-08-27
760 reads
SQLKover update: this was one of the most popular posts on my old blog. It’s quite old now and SQL...
2015-08-20
1,069 reads
Recenty I was writing an article for MSSQLTips where I had to create a treemap (it will be published soon)....
2015-08-26 (first published: 2015-08-18)
2,583 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