Viewing 15 posts - 121 through 135 (of 372 total)
Any chance in getting an execution plan?
Kurt
December 9, 2013 at 2:07 pm
I've been using a procedure written by Gregory A. Larsen. It will display the top worst performing queries. It comes in quite handy and may help you out....
December 9, 2013 at 2:05 pm
When faced with a situation like this there are several things I'd need to know. How long does the Agent Job take to run? Are there going to...
December 9, 2013 at 11:44 am
So I had a little time to play with this script. I found where you introduced a bug when you added the square braces around your table name, where...
December 9, 2013 at 11:31 am
CREATE TABLE #IndexFrag(
database_id int,
object_ID int,
index_id int,
name varchar(max),
page_count int,
avg_fragmentation_In_Percent real )
Change your NAME column to varchar(max) and I think your code will work.
Kurt
December 9, 2013 at 9:57 am
Ed Wagner (12/9/2013)
BWFC (12/9/2013)
whereisSQL? (12/9/2013)
Ed Wagner (12/9/2013)
crookj (12/9/2013)Snow (8 inches of it!)
Driving
Skid
Row
Column
pillar
December 9, 2013 at 9:23 am
I've run into this issue before and the way I was able to get around this was to create a batch command file w/i the job that starts by mapping...
December 6, 2013 at 8:00 am
I have to move data from a production copy of a database to a development copy. I do this by using an Import Data task and literally move all...
December 6, 2013 at 7:54 am
If I were you I'd poke around to find an index manager that looks at the indexes that exceeds a threshold of fragmentation. Typically there is a much smaller subset...
December 6, 2013 at 6:10 am
I use the Auto_Fix option on sp_change_users_login to fix orphan users.
Kurt
December 5, 2013 at 8:16 am
If I were you I'd poke around looking for an SOP for setting up tempdb. It is worth reading and you will learn a lot. I'd also suggest...
December 4, 2013 at 8:57 am
Ed Wagner (12/2/2013)
whereisSQL? (12/2/2013)
Revenant (12/2/2013)
Ed Wagner (12/2/2013)
Sales presentationPowerPoint
Charts
Misinterpretation
distort
December 2, 2013 at 11:53 am
Jeff Moden (12/2/2013)
December 2, 2013 at 9:38 am
I wrote a stored procedure that creates a temp table which I use in a calling stored procedure. You cannot declare an output variable as a user defined table...
November 27, 2013 at 1:14 pm
Lowell (11/27/2013)
November 27, 2013 at 8:52 am
Viewing 15 posts - 121 through 135 (of 372 total)