College Degrees Shouldn't Be Required for Tech Jobs
Today we have a guest editorial from Kendra Little that talks about the requirements you may have for potential employees.
2018-09-07
150 reads
Today we have a guest editorial from Kendra Little that talks about the requirements you may have for potential employees.
2018-09-07
150 reads
It is important to train new people, so what is the best way to go about doing it?
2018-09-06
358 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
91 reads
2018-09-03
54 reads
2018-09-03
33 reads
2018-08-31
79 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
77 reads
The ways in which we collect and use data aren't always apparent to our customers. Perhaps we should do better.
2018-08-29
34 reads
We can't protect against all hacks, but can we prove they weren't our fault?
2018-08-28
41 reads
Phil Factor is not amused by SQL Server's handling of the comma-separated value (CSV) file format.
2018-08-27
513 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