Contracting – Your best clients are your current clients…
and your old clients too.
Before I started my contracting business five years ago I realised the importance of selling and...
2012-06-20
825 reads
and your old clients too.
Before I started my contracting business five years ago I realised the importance of selling and...
2012-06-20
825 reads
As I mentioned in my post last week I was fortunate enough to visit Washington DC a week or so...
2012-06-18
724 reads
This past week my international adventures have continued. As some of you know, for the past couple of years, I...
2012-06-13
1,532 reads
I have been thinking about this for a while now, but I have decided to change my twitter handle. I...
2012-06-08
725 reads
I wrote a post earlier this week telling you all about my trip to Ottawa last week, during my trip...
2012-06-01
858 reads
By David Postlethwaite
I was at a meeting the other week when someone mentioned that you could specify two SQL Servers...
2012-05-31
1,738 reads
I’m very lucky in my work as freelance consultant and trainer I get to travel the world, and last week...
2012-05-30
2,126 reads
I got asked a question recently about what books I would recommend for learning T-SQL. I posted a couple months...
2012-05-29
1,112 reads
Between my old website, which I started back in 2007 (which has since disappeared) and my blog, which I switched...
2012-05-28
1,027 reads
Ryan Recruiter meet Dave DBA…
As a contractor and consultant I get to speak to many agents and recruiters and over...
2012-03-14
706 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