Viewing 15 posts - 16 through 30 (of 79 total)
Alan.B (11/29/2016)
You'll notice three UNION ALL's. The first query after...
November 30, 2016 at 2:42 am
Jeff Moden (11/18/2016)
N_Muller (11/18/2016)
Jeff Moden (11/3/2016)
November 18, 2016 at 4:02 pm
Jeff Moden (11/3/2016)
November 18, 2016 at 2:51 pm
SQL Server doesn't allow to create filtered indexes or indexes on computed columns in temp tables with ansi warnings turned off. Here's a simple example:
set ansi_warnings off
create table #temp...
August 23, 2016 at 3:18 pm
If you have temp tables (#tables) with indexes in a stored procedure where ansi warnings are turned off for aggregation of null values, the procedure fails. Regardless of good...
August 23, 2016 at 9:00 am
The type of data and the quality of the queries was not on my question. Apparently if it is BY DEFINITION, then SQL Server has a bug, because it...
August 20, 2016 at 2:10 pm
This is a very good article. How many times I've seen beautifully written and concise SQL that doesn't perform. As said, "our goal is not to write less...
August 19, 2016 at 7:52 am
Grant Fritchey (4/29/2016)
N_Muller (4/29/2016)
Grant Fritchey (4/29/2016)
N_Muller (4/28/2016)
Or is it a hit and miss in terms of queries that perform poorly.
I'll just pile on and agree.
The main issues I've seen are...
April 29, 2016 at 1:50 pm
Grant Fritchey (4/29/2016)
N_Muller (4/28/2016)
Or is it a hit and miss in terms of queries that perform poorly.
I'll just pile on and agree.
The main issues I've seen are with multi-statement, table-valued,...
April 29, 2016 at 8:49 am
Thanks everyone for the replies. I get it that it is probably CE. By my reading, I see that most people indicate the new CE improves performance, but may...
April 28, 2016 at 3:28 pm
SpeedySQL (11/4/2015)
USE master;
SELECT
r.session_id
,db_name(database_id) db
,r.status
,r.blocking_session_id blockedBy
,r.start_time
,r.wait_type
,r.total_elapsed_time/1000 secs
,command = SUBSTRING (txt.text, r.statement_start_offset/2,
((CASE WHEN r.statement_end_offset = -1
...
November 4, 2015 at 10:02 am
Forgot to mention about the DelimitedSplit8K. I tried that as well and it still doesn't meet my performance needs. Any other suggestions are welcomed.
October 1, 2015 at 2:33 pm
I fully understand that LEFT and INNER joins are different. We wouldn't have different commands to give the same result 😉
Anyhow, the problem I have is quite simple, but...
August 7, 2015 at 1:26 pm
Filetable is built on top of filestream so, in principle, there shouldn't be much of a difference. The main difference is that filetables are accessible by other windows applications...
July 2, 2015 at 2:46 pm
I appreciate your comment, but you still didn't answer my question. Anyhow, there are many reasons you need a recursive CTE where maxrecursion > 100. A sequential list...
June 22, 2015 at 12:15 pm
Viewing 15 posts - 16 through 30 (of 79 total)