Viewing 15 posts - 1 through 15 (of 22 total)
Ed Wagner (12/1/2015)
December 1, 2015 at 5:35 am
I got the answer right, but with the wrong (or different?) theory...
I was looking at the size of the CHAR value... I figured that because it is lower, it'll use...
August 6, 2015 at 4:45 am
You should probably demonstrate your database structure and the type of queries you are running.
As a Data Warehouse company with a 3TB database, we installed SQL Server 2014 and configured...
April 22, 2015 at 3:27 am
dlaughlin 24148 (3/23/2015)
Nice to see that 4% of respondents chose the "Don't choose this" option. 🙂
If there is one thing I've learned from SQLServerCentral is that you should always...
March 24, 2015 at 2:11 am
Very nice article and it clearly explains what Apply is used for!
I feel that you should've included some "tricks" to improve performance on big queries to see the real benefit...
January 28, 2015 at 2:00 am
Maybe add to the explanation that SMALLDATETIME is 1900-01-01.
Maybe some people doesn't know the ranges are different
November 25, 2014 at 2:25 am
Would the first query not use the clustered index?
It makes no sense why it would even consider the non-clustered index
November 20, 2014 at 11:49 pm
SQLRNNR (11/2/2014)
I appreciate the question. I seldom, if ever, think to perform the query in the second fashion.
+1, didn't really know its possible (well just never thought of it)
Are...
November 2, 2014 at 11:38 pm
I think the explanation need some work.
CTEs doesn't ALWAYS need a semi-colon in front.
This for example works fine:
DECLARE @tmpVariable INT
WITH cte
AS
(
SELECT 1/0 as 'Result'
)
SELECT *
FROM cte
I'd...
September 4, 2014 at 3:30 am
pmadhavapeddi22 (8/6/2014)
Hany Helmy (8/6/2014)
August 6, 2014 at 6:55 am
lol.. I got this by accident.. I was assuming a print function won't fail the query and didn't even notice the string is longer than 15 chars.
April 10, 2014 at 12:50 am
Bhuvnesh (11/6/2013)
Tej_7342 (11/5/2013)
November 6, 2013 at 5:21 am
Tej_7342 (11/5/2013)
The log file fills up if i am using the query. (Database is in Simple Recovery). Any ideas?
Why not consider running the job daily then instead of weekly? ...
November 6, 2013 at 12:09 am
I wonder what was the thinking behind the third answer?
Why would someone think '10' will be returned if you entered '40' at the insert?
Maybe I was just clever to read...
October 11, 2013 at 4:05 am
Viewing 15 posts - 1 through 15 (of 22 total)