Stop, Smell, Smile
On this quiet Friday, Steve Jones skips a poll and talks about life. This editorial was originally published on Jun 6, 2008. It is being republished as Steve is on vacation.
2013-03-20 (first published: 2008-06-06)
249 reads
On this quiet Friday, Steve Jones skips a poll and talks about life. This editorial was originally published on Jun 6, 2008. It is being republished as Steve is on vacation.
2013-03-20 (first published: 2008-06-06)
249 reads
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
2008-06-05
129 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-04
93 reads
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-03
176 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-02
271 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-06-02
246 reads
Seeking to recognize DBAs for the work they do, the Exceptional DBA Awards are open for nominations. Steve Jones talks a bit about the event.
2008-05-30
223 reads
As the number of different software/technologies increases exponentially, does specializing limit an IT professional's ability to move around? This editorial is being republished due to technical issues from last week.
2008-06-02 (first published: 2008-05-29)
1,896 reads
Steve Jones talks about alternative hybrids, in this bi-monthly update on automotive news.
2008-05-28
106 reads
A guest editorial from Tony Davis, on how to test whether someone will make a good DBA or developer.
2008-05-27
228 reads
By Steve Jones
I was testing the new SSMS (v22 Preview 3) with Copilot and ran into...
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
Comments posted to this topic are about the item Create an HTML Report on...
Hi I have a SP that occasionally get this error: Cannot resolve the collation...
Hi everyone I am getting an error when I create the index but I...
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022? See possible answers