Viewing 15 posts - 3,076 through 3,090 (of 5,843 total)
trinamjose23 (1/29/2012)
can any one provide me sample quires to practise performance tuning on sample databases.plz i am much confused and i want to practice more to understand well...
You cannot...
January 30, 2012 at 6:54 am
Split your string into a temporary table (NOT table variable) and then join to that for your output query. Problem solved.
January 30, 2012 at 6:53 am
If you truly expect high traffic volumes then you had best test for that BEFORE you go live!!! I can't tell you the number of times I have seen...
January 27, 2012 at 8:09 am
Here is a go-to blog post on deadlock troubleshooting:
http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
Note there are 2 additional parts to this blog series.
January 27, 2012 at 8:02 am
Get and learn to use the AMAZING, FREE maintenance scripts from ola.hallengren.com. Nice documentation with it too.
January 26, 2012 at 7:19 am
Russ, please don't post to 5 year old threads. Thanks!
January 26, 2012 at 7:18 am
SQL Kiwi (1/24/2012)
TheSQLGuru (1/24/2012)
January 24, 2012 at 6:46 pm
ceasor (1/24/2012)
I dislike your approach. OLAP service (SSAS) is designed to solve such task. Use calculated Dimension or Time intelligence for...
January 24, 2012 at 11:22 am
mtassin (1/24/2012)
TheSQLGuru (1/24/2012)
2) cursors are still the fastest supported...
January 24, 2012 at 10:33 am
SQLJOBVIS!!! It's not a script, but it is FREE and it is awesome at allowing you to see job statuses and MUCH more importantly job run overlaps so you...
January 24, 2012 at 7:32 am
1) as others have stated that triangular join (xx <= yy) is gonna kill you performance wise as number of rows increases.
2) cursors are still the fastest supported way to...
January 24, 2012 at 7:29 am
After you remove the UDF (which is MANDATORY!!!!), you may still have a classic performance tuning problem.
a) are all necessary indexes in place
b) the problem with increasing numbers...
January 23, 2012 at 6:42 am
Stop trying to force a square peg into a round hole. Just initialize from backup and move on to the next item in your to do list.
January 20, 2012 at 7:02 am
By far the best way to learn performance analysis and tuning is to have a mentor that can work with you to examine/improve your existing applications while teaching you what...
January 20, 2012 at 7:00 am
suresh0534 (1/18/2012)
If we create Temporay Tables in a Stored Procedure will degrade the performance of the query?
Ex:
CREATE TABLE #TempTable
(id int,name varchar(50))
INSERT INTO #TempTable
SELECT id,name FROM Employee
How to...
January 20, 2012 at 6:56 am
Viewing 15 posts - 3,076 through 3,090 (of 5,843 total)