Pragmatic Works descends on SSWUG VConference
Hey There Gang,
I have been pumping the SSWUG VConference the last few weeks but the reason I'm so excited about...
2010-08-04
231 reads
Hey There Gang,
I have been pumping the SSWUG VConference the last few weeks but the reason I'm so excited about...
2010-08-04
231 reads
Well SQL Saturday here in South Florida was QUITE an event this past weekend. We had over 400+ attendees and...
2010-08-04
179 reads
SSWUG, or the SQL Server Worldwide Users’ Group, is one of the largest and most respected SQL Server communities on...
2010-08-04
305 reads
Hey There Gang!
For those of you who are not familiar with SSWUG I don’t know what to say. SSWUG or...
2010-08-04
191 reads
Hey folks, we have some very exciting SQL Lunch speakers on the docket coming up. Check out Devin Knight(Blog)|(Twitter) and...
2010-08-04
186 reads
What are we talking about?
Recently Microsoft released a new version of SQL Server 2008 R2 called Parallel Data Warehouse Edition....
2010-07-29
769 reads
Some exciting times coming up here in the South Florida SQL Server Community. SQL Saturday South Florida is rapidly approaching....
2010-07-24
445 reads
Hey folks, Check out SQLLunch.com today at 12:30 EST for my presentation on Introduction to dimensional modeling. It's going to...
2010-07-22
384 reads
Pretty exciting stuff gang! I have an approved session and an alternate for the PASS Summit in November. The SQL...
2010-07-13
335 reads
I get to work with a lot of different clients and client environments and like many companies they are often...
2010-07-09
309 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
i have subscription of github copilot which i can access in vs 2022 comunity...
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