Speaking at PASS Summit 2012
Today I’m thrilled and humbled to announce that I will be speaking 3 times at PASS Summit in November 6-9! ...
2012-06-19
991 reads
Today I’m thrilled and humbled to announce that I will be speaking 3 times at PASS Summit in November 6-9! ...
2012-06-19
991 reads
Using Active Directory groups are a great way to manage and maintain security for a solution. Think about if you...
2012-06-13
1,888 reads
SSIS 2012 has added a few new expression functions and I thought I’d spend a short time detailing each.
LEFT
The LEFT...
2012-06-05
2,377 reads
With the new Project Deployment Model in SSIS developers are gaining the benefit of a new design time only feature...
2012-05-31
3,793 reads
The new project deployment model in SSIS 2012 is the new standard for how packages are created, configured and deployed. ...
2012-05-22
9,595 reads
Many of you may now or in the future have the need to upgrade your SSIS packages to the new...
2012-05-16
26,047 reads
Another SQL Rally has wrapped up in Dallas, TX and it was great event. My favorite part about these larger...
2012-05-11
1,474 reads
We’ve completed reviewing the major Microsoft tools and now you have to make “The Decision”. Which tool(s) is the best...
2012-05-02
2,024 reads
Last Thursday I had the pleasure of speaking in Orlando, FL at the OPASS monthly meeting. I spoke on Extending...
2012-04-24
1,132 reads
In part five of this on going series about choosing the right reporting tool we will discuss the newest of...
2012-04-17
1,619 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