Thoughts on Mentoring - Part 2
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
508 reads
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
508 reads
Mentoring is something I think a lot of us wish for and that few of us find. Few businesses encourage...
2008-04-13
514 reads
Saw this in the MCP Flash today, if you register to be notified when the exams are live you get...
2008-04-11
314 reads
If you haven't visited yet, MS Connect replaces the old sqlwish email alias and provides - in theory! - a better way...
2008-04-09
435 reads
Well, it got me at least! Not long ago someone asked me about partitioned views and as I'm apt to...
2008-04-08
408 reads
From the SQLSaturday event site:
AFTER EVENT PARTY ANNOUNCED! Our after event party will be held at 7 Bridges Grille beginning...
2008-04-07
561 reads
Absolutely worth watching.
http://blogs.sun.com/jonathan/entry/the_video
2008-04-07
514 reads
I suspect few would argue that database mail in SQL 2005 is a huge improvement over the mail system in...
2008-04-07
301 reads
In SQL 2000 when you run sp_updatestats it's the equivalent of running UPDATE STATISTICS on each table, forcing the update...
2008-04-06
414 reads
I needed a KVM (keyboard-video-mouse) switch for home to let me switch between two machines, found the Trendnet 2 Port...
2008-04-03
324 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