Ironkey Personal - Super Secure USB?
Ran across IronKey Personal in PC Magazine and thought some of you might be interested. It has built in encryption,...
2008-07-08
276 reads
Ran across IronKey Personal in PC Magazine and thought some of you might be interested. It has built in encryption,...
2008-07-08
276 reads
I had a note to myself to write up some notes about listening on a non standard port, but it...
2008-07-07
389 reads
Just over a year ago I decided to start a blog and I put an item on my calendar to...
2008-07-06
354 reads
I try to limit the number of truly off topic posts I do, but today is a special day in...
2008-07-03
237 reads
My friend Shawn Weiseld posted a note about the new INETA Champs Program. Looks interesting and is a nice step...
2008-07-02
346 reads
I commented in an earlier post about the challenges PASS has in trying to select a 100 or so speakers...
2008-07-01
293 reads
MS Word 2007 (and probably earlier versions) have the ability to do a basic document compare, useful if you're at...
2008-06-30
1,322 reads
Recently I had the chance to help a student debug a problem on a production server. It appeared to be...
2008-06-29
1,453 reads
Recently I was visiting with an old acquaintance and one of the topics that came up was volunteers. At some...
2008-06-26
2,214 reads
Call for speakers is open for SQLSaturday #5 in Olympia, WA on Oct 10 (note that the MS BI conference...
2008-06-25
1,463 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 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