Ohio Business Intelligence Road Trip 2013
Next month Mike Davis and myself will be making a epic road trip. We will be flying into Columbus, OH...
2013-06-27
1,620 reads
Next month Mike Davis and myself will be making a epic road trip. We will be flying into Columbus, OH...
2013-06-27
1,620 reads
Thanks everyone for attending my free webinar on Creating Real World PowerPivot Models on June, 18, 2013. If you were...
2013-06-20
1,041 reads
I’m a little late to the celebration but on Friday some there was some exciting news regarding Power View was...
2013-06-02
945 reads
I hope you were able to attend my free webinar on Ad-hoc Reporting with SharePoint on May 21, 2013. If...
2013-05-23
1,239 reads
I hope you were able to attend my free webinar on Introduction to Analysis Services on April 2, 2013. If...
2013-04-08 (first published: 2013-04-02)
2,221 reads
Join me tomorrow, April 2. 2013, at 11:00 PM EST for a free webinar which is part of an entire...
2013-04-01
856 reads
These days the fastest way, not always the most accurate, to get news is through social media. Technology, sports, politics,...
2013-03-20
1,085 reads
What is Data Explorer
Data Explorer simplifies the data discovery phase for Excel users that are creating self-service Business Intelligence solutions. ...
2013-03-06
1,071 reads
What is Inquire
The Inquire Add-in for Excel 2013 helps you analyze and review your workbooks for things like relationships, invalid...
2013-02-08
2,249 reads
I’m very excited to announce that you can now purchase my latest release book:Knight’s Microsoft SQL Server 2012 Integration Services...
2012-11-30
3,324 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers