SQL Profanities
Do you avoid certain SQL functionality because you have been told you should NEVER use it?
2008-08-11
70 reads
Do you avoid certain SQL functionality because you have been told you should NEVER use it?
2008-08-11
70 reads
The Mojave Experiment is a marketing effort by Microsoft that is very interesting in looking at first impressions. Steve Jones comments.
2008-08-10
71 reads
This weeks Database Weekly looks at a longtime leader for the Microsoft SQL Server development team leaving the company.
2008-08-08
62 reads
2008-08-06
68 reads
2008-08-06
63 reads
2008-08-05
60 reads
Would you leave technology and come back to it as a career? It seems that many people are afraid of doing it, but Steve Jones talks about why it shouldn't matter.
2008-08-04
75 reads
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-03
67 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
531 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
62 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