Viewing 15 posts - 46 through 60 (of 614 total)
Just don't forget integer values run out at about 2.1 billion. We're running into that now on some primary key=integer identity columns and having to change to bigInt (...
December 27, 2016 at 8:19 am
Thanks. Now instead of the ORM-generated query looking vaguely awful, it is crystal-clear awful. It ran for 30 minutes in prod this morning before I had to leave...
December 24, 2016 at 12:19 pm
Yes it's there under keys and in your query results. So apparently I can disable the unused index and the constraint ( key ) remains in force.
name ...
December 21, 2016 at 10:05 am
Here is what much of our ORM code is based off of:
[/url] The author used to work for us but apparently hasn't updated it in...
December 17, 2016 at 9:41 am
This query could run as much as 15 minutes before. I attached the plan above, I thought, but again for this post.
December 16, 2016 at 1:45 pm
Regarding the modifications Lynn Pettis made to the OP query. I attached the plan.
------LYNN PETTIS CHANGE
-- 92 rows in QA in 03:29 first run 10 seconds...
December 16, 2016 at 9:40 am
You can try the attached SqlCleaner. It was written a few years ago and definitely depends on the command starting with exec sp_executesql N'SELECT yada yada...
December 15, 2016 at 9:57 am
SoHelpMeCodd and David Poole: yes yes yes, exactly.
Lots of select distincts, usually combined with TOP. IN statements with 50+ elements. Parameters declared at string length. I've...
December 15, 2016 at 8:22 am
Yes ORM-generated sql. Ours is a version called Domain Objects written by a former developer here. Others include Entity Framework and Hibernate. That sql code was...
December 14, 2016 at 8:04 pm
Development is considering all options. The SSD thing was just to buy them some time.
In the meantime I may take a couple of the worst queries ( combined OLTP/OLAP...
December 14, 2016 at 5:38 pm
Great article this is exactly the boat we are in now that the database is large 6 TB ....things are starting to grind to a halt so we're going to...
December 14, 2016 at 3:44 pm
Thanks Lynn I'll give it a run
December 14, 2016 at 3:29 pm
Why would SSDs generate deadlocks?
December 12, 2016 at 6:21 am
Viewing 15 posts - 46 through 60 (of 614 total)