2015-09-18
3 reads
2015-09-18
3 reads
on 25th july 8.30 am pst, i will be speaking on “standardized sql installations – script review & demo)” @ sqlsaturday, sacramento!!, if...
2015-07-24
704 reads
2015-07-24
2015-07-24
1 reads
2015-07-24
2 reads
2015-07-24
1 reads
the san francisco sql server user group – may 13 2015
session evaluation
uploading presentation dac and scripts for today’s session….
scripts:
to...
2015-05-13
703 reads
2015-05-13
9 reads
2015-05-13
2 reads
2015-05-13
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