2007-12-17
142 reads
2007-12-17
142 reads
Licensing SQL Server used to be easy and could be again, though it is still better than licensing Oracle.
2007-12-17
239 reads
If someone acts suspicious at work, do you report them? What if it's the CIO? What if data security is involved?
2007-12-14
95 reads
Malicious code embedded inside advertisements served on the web. What's next?
2007-12-13
66 reads
Everyone wants real time reporting, or do they? Steve Jones talks about some of the downsides of implementing such a system.
2007-12-12
116 reads
A primary key is a must for every table. Or is it? Steve Jones examines the question.
2007-12-11
455 reads
Building a team when you are developing software of any size is important and Steve Jones shares one of the most important things you need.
2012-10-31 (first published: 2007-12-10)
175 reads
In an age where commercial interests seem to trump all, it's nice to see someone delivering content out there for free.
2007-12-10
118 reads
What do IT workers want for Christmas? Let us know in this Friday's poll.
2007-12-07
53 reads
Cell phones are great communication tools, but that's mostly what they do, even for IT folks. But Steve Jones talks about some other possibilities and potential problems.
2007-12-06
49 reads
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...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
Comments posted to this topic are about the item Create an HTML Report on...
Hi everyone I am getting an error when I create the index but I...
Good morning all, I have been running into a very random weird issue that...
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