Before you submit that incident to Microsoft...
Check out this post:
Things to consider before submitting an incident to Microsoft
Getting the information together before you make that phone...
2006-07-20
2,346 reads
Check out this post:
Things to consider before submitting an incident to Microsoft
Getting the information together before you make that phone...
2006-07-20
2,346 reads
I'll be presenting at the DotNet Columbia SC User Group on August 8th.
My presentation is tentatively titled, "Something old, something...
2006-07-20
1,633 reads
There is a very interesting article about how MSDN 2 utilizes SQL
Server 2005 technologies, specifically Service Broker and CLR
integration. The...
2006-07-20
1,513 reads
I saw this on a Channel 9 forum thread:
Library of Free Data Models
There are quite a few starter data models...
2006-07-19
1,910 reads
I was catching up on my blog reading (unfortunately, in some cases I'm
a month behind) and came across a link...
2006-07-14
1,453 reads
There is are two new KB articles on how the file growth value can become abnormally large. You can find...
2006-07-13
1,606 reads
Found this link on one of the security mailing lists I peruse. You can find an archive of the original...
2006-07-11
1,393 reads
Microsoft has published a new Knowledge Base article on the
requirements to receive support for what is known as remote mirroring.
Requirements...
2006-07-07
1,713 reads
I took the 70-441 exam last week and passed, which is good since I'm
working on part of the exam prep...
2006-07-07
1,473 reads
I wrote a new article for SQL Server Central on SQL Server 2005 Logins. It covers the basics. This is...
2006-07-05
1,396 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