Viewing 15 posts - 91 through 105 (of 5,842 total)
If you are looking at table partitioning then you have Enterprise Edition of SQL Server. If an 80GB table (or 5M inserts per day) is causing performance problems on Enterprise Edition...
January 10, 2018 at 9:15 am
First off make all your columns NOT NULL. It is inefficient to store NULLable datatypes when all rows will have data.
The simplest way to do this is with...
January 9, 2018 at 10:32 am
January 4, 2018 at 2:13 pm
Don't go away but how about a new years resolution to try and be a...
January 4, 2018 at 1:43 pm
TheSQLGuru: that sounds encouraging. The only reason why our managers don't want...
January 3, 2018 at 8:46 pm
January 3, 2018 at 10:20 am
Randy, I can virtually guarantee you that a competent consultant could quickly find a myriad of misconfigurations, suboptimal infrastructure, poor mx, bad queries, BAD indexing, etc. etc. etc. A fair...
December 12, 2017 at 9:16 pm
Microsoft's page has the following about putting things in master: "If you do, master must be backed up more frequently."
There is no reason for you to no do what you...
October 31, 2017 at 11:12 am
Just poke around and do things with various object and actions and lots of EF code will drop out. I'm sure you will notice the nvarchar(4000) parameter declarations.
October 30, 2017 at 8:35 am
1) It is stupid to not backup master regularly.
2) You can protect against that by having a single script (or easy mechanism to run a bunch of scripts)...
October 30, 2017 at 8:26 am
Jeff, don't forget to add in LOCKING THE TABLE for potentially an extended period. This almost certainly needs to be batched into some number of rows per batch, using a...
October 27, 2017 at 10:00 am
October 27, 2017 at 9:54 am
October 27, 2017 at 9:49 am
That's pretty messed up.
Do the queries that DO complete successfully begin with the same SELECT @@SPID;?
SSMS is a huge pile of HORRIBLY CODED ENTITY FRAMEWORK CRAP,...
October 26, 2017 at 1:16 pm
Viewing 15 posts - 91 through 105 (of 5,842 total)