Viewing 15 posts - 5,971 through 5,985 (of 7,608 total)
The single biggest factor in overall query performance is getting the best clustered index on each table (hint: it's rarely an identity column). Typically you'd start with a higher...
July 9, 2014 at 10:24 am
I'm virtually certain the tables are clustered improperly. That should be fixed before you do the partitioning. It's even possible you won't need to partition if you put...
July 7, 2014 at 1:05 pm
You can, and definitely should, avoid converting cStaging.cDate if you can.
--if "cDate" is a datetime column:
--instead of this:
--WHERE (CONVERT(DATE, cStaging.cDate) BETWEEN @startdate AND @endDate) AND (CONVERT(DATE,...
July 7, 2014 at 12:40 pm
sqldriver (7/5/2014)
TheSQLGuru (7/1/2014)
create index ix_Split_1 on #Split_1 (NewParameter)Good call on the joining to a split-built derived table and how putting that into a temp table could make things faster. ...
July 6, 2014 at 12:52 am
By far the biggest payback is in correcting clustered indexes if the wrong key column(s) were chosen for it. And that alone often allows very large numbers of other...
July 2, 2014 at 8:32 pm
I also make the doc tables "live". That is, the code that created/initialized/set up a new db should use the "documentation" table to determine whether the table is static...
July 2, 2014 at 8:30 pm
TheSQLGuru (7/2/2014)
ScottPletcher (7/2/2014)
TheSQLGuru (7/1/2014)
Very few things in SQL Server land can/will short-circuit.
I think that's over-stated. Most optimizers will short-circuit when they safely can. Presumably later versions of...
July 2, 2014 at 8:27 pm
You did review the stats SQL Server provides on index usage and missing indexes before you made your changes, right?
Edit: What indexes you think SQL will need/use and what indexes...
July 2, 2014 at 4:06 pm
TheSQLGuru (7/1/2014)
Very few things in SQL Server land can/will short-circuit.
I think that's over-stated. Most optimizers will short-circuit when they safely can. Presumably later versions of the optimizer...
July 2, 2014 at 4:03 pm
I wouldn't want to put them in a separate schema unless you really had to. Aside from hideous renaming issues (*), you might end up with what seems like...
July 2, 2014 at 3:43 pm
If you want to keep/commit previous activities in the loop, you likely need to explicitly BEGIN and COMMIT a tran for each loop, something like this:
WHILE ...
BEGIN
...
July 2, 2014 at 3:35 pm
is there any possible way to keep the table as it is without effecting the current database performance.
Try clustering the table by datetime (rather than identity, I'm guessing) and specify...
July 2, 2014 at 2:40 pm
cbrammer1219 (7/2/2014)
Can a Index be on the Identity that is created on the insert?
Yes, it can be.
For overall performance, what is really critical is determining the best column(s) for the...
July 2, 2014 at 11:05 am
Given that it's a single string being split, I don't think there's much to gain by changing that code.
July 2, 2014 at 10:57 am
there are no pk or fk in the tables
Don't care about pk/fk specifically. What indexes currently exist on these tables? Could you add a computed column(s) and create...
June 27, 2014 at 3:12 pm
Viewing 15 posts - 5,971 through 5,985 (of 7,608 total)