PASS Summit 2012 Review
Life is finally returning to normal after a great week in Seattle for PASS Summit 2012. The entire year is...
2012-11-23 (first published: 2012-11-13)
1,612 reads
Life is finally returning to normal after a great week in Seattle for PASS Summit 2012. The entire year is...
2012-11-23 (first published: 2012-11-13)
1,612 reads
Did you attend PASS Summit and miss out on some sessions because there were so many or you were busy...
2012-11-21
1,240 reads
Thanks to all who attended my webinar last Thursday on Building Dynamic Cube Reports. You can find my code
Recording:
http://pragmaticworks.com/LearningCenter/FreeTrainingWebinars/WebinarDetails.aspx?ResourceId=470
Code:
http://sdrv.ms/RqxbcF
There are...
2012-10-30
1,632 reads
Join me next week for a really fun presentation on building Dynamic SSRS
reports using Analysis Services cubes as a...
2012-10-18
1,596 reads
If you missed any of the great 24 hour of PASS sessions from September you
can now watch the recordings.
http://www.sqlpass.org/UserLogin.aspx?returnurl=%2fLearningCenter%2fSessionRecordings%2f24HoursFall2012.aspx
Details...
2012-10-12
1,071 reads
Several weeks ago I posted a quick survey on my blog that asked how you choose a session to attend...
2012-10-03
959 reads
Last week during my 24 Hours of PASS session on Choosing a Reporting Platform I fielded a question that appeared...
2012-09-26
1,294 reads
Tomorrow Brian Knight and I will kick off 24 hours of PASS with a session on Choosing a Microsoft Reporting...
2012-09-19
1,172 reads
Many of you have attended sessions by technical speakers at conferences and mini-conferences like SQL Saturday, SQL Rally, 24 Hours...
2012-09-12
1,092 reads
September is another busy month of speaking events for me and I thought I’d share them with you so maybe...
2012-08-29
1,719 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