Power BI World Tour Is Coming to Charlotte
If you haven’t heard, Power BI is doing a world tour, eight cities in four months and Charlotte, NC is...
2018-07-17
245 reads
If you haven’t heard, Power BI is doing a world tour, eight cities in four months and Charlotte, NC is...
2018-07-17
245 reads
I’ve been pondering the creation of a logo for quite some time and I finally decided to go ahead with...
2018-07-17
216 reads
It’s been a bit slow in the US this week due to the American 4th of July holiday, but it’s...
2018-07-10 (first published: 2018-07-05)
3,476 reads
I am excited to announce that I have been selected to speak at SQL Saturday Baton Rouge (#749) on August...
2018-06-28
342 reads
Data Quality is a huge issue, especially now with more and more data being created daily. According to Micro Focus...
2018-06-20
263 reads
I am so excited to announce that I will be giving my Data Types Do Matter session for the SalemSQL...
2018-06-14
242 reads
I recently presented two sessions at Music City Tech and just received my feedback. I got great feedback and looks...
2018-06-22 (first published: 2018-06-11)
1,460 reads
When baseball players are called up to the Major League from the Minor League it’s referred to as getting “Called...
2018-06-06
275 reads
I know Nashville is most famous for Country music, but in the recent years, it has become home to more...
2018-06-05
280 reads
I am excited to announce that I have been selected to speak at Music City Tech held at Vanderbilt University...
2018-04-04
271 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...
Looking for a laptop on rent in Bangalore? Renting laptops is a smart choice...
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
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