2015-05-13
1 reads
2015-05-13
1 reads
This session is mostly demo-focused. I will cover prerequisites for scripts and show how to do multiple SQL Server installations...
2015-05-02
631 reads
This session is mostly demo-focused. I will cover prerequisites for scripts and show how to do multiple SQL Server installations using scripts and demonstrate how to Streamline SQL Server...
2015-05-02
1 reads
2015-05-02
3 reads
2015-05-02
1 reads
2015-05-02
4 reads
2015-05-02
5 reads
In this session Prakash will walk through the process implemented to alleviates many of the pain points for deploying, managing,...
2015-03-03
542 reads
2015-03-03
3 reads
2015-03-03
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