Whitepaper Wednesday - Mirroring a Large Number of Databases in a Single SQL Server Instance
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
201 reads
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
201 reads
Did you ever set a goal and then sort of … demolish it without realizing it? That has happened this year....
2010-08-26
337 reads
Did you ever set a goal and then sort of … demolish it without realizing it?
That has happened this year....
2010-08-25
354 reads
Hey Folks,
We have some great speakers coming up at the SFSSUG in South Florida. Check out Devin Knight here talking...
2010-08-25
667 reads
Hey Folks,
We ahve some great speakers coming up at the SFSSUG in South Florida. Check out Devin Knight here talking...
2010-08-24
704 reads
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check it out here...
2010-08-19
176 reads
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS.
It’s coming on quickly so make...
2010-08-19
208 reads
Hey there gang ! – It’s been a while since I’ve written on here and I apologize. It’s shameful I know. I...
2010-08-19
359 reads
Pretty exciting stuff gang! I have an approved session and an alternate for the PASS Summit in November. The SQL...
2010-08-19
313 reads
What are we talking about?
Recently Microsoft released a new version of SQL Server 2008 R2 called Parallel Data Warehouse Edition....
2010-08-19
781 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...
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