The July Car Update (2007)
Steve Jones bimonthly car update looks at driving in the UK and the differences in cars between the US and elsewhere.
2007-07-30
33 reads
Steve Jones bimonthly car update looks at driving in the UK and the differences in cars between the US and elsewhere.
2007-07-30
33 reads
2007-07-04
17 reads
Steve Jones takes a look at energy news and how Google and Microsoft are looking to lower their dependence on the grid and advance alternative energy use.
2007-06-27
8 reads
Steve Jones takes a look at the world of automobiles and specifically his new Prius hybrid.
2007-05-29
34 reads
A guest editorial today from Atieh Jones wondering where are all the women in IT?
2007-02-14
120 reads
A guest editorial today from Lynda Rab, PASS board member and new mother.
2007-02-13
38 reads
Steve Jones looks at some of the issues with gender in the workplace and reminds everyone that they need to respect each other.
2007-02-12
17 reads
Steve Jones talks about the ne value of the new certification program from Microsoft.
2006-11-20
573 reads
A change here at SQLServerCentral.com and Steve Jones gives some thoughts on the impact of this for the future.
2006-11-13
107 reads
Steve Jones brings us a car update that talks about a new car that doesn't need gasoline to run.
2006-11-01
43 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