Viewing 15 posts - 1 through 15 (of 17 total)
OBJECT_NAME() only works in the context of the database in which the object lives. The only thing I can think of is to extract the database_id and object_id and...
October 17, 2011 at 10:05 am
The best way to handle this in a production environment is to cap the size of the log file so it does not fill up the entire disk or you...
November 30, 2009 at 4:16 pm
Did you have your Full Text Index set to update automatically, or did you have to do any maintenance on it?
The preliminary tests I have done show a drastic improvement...
March 25, 2009 at 1:53 pm
I am not POSITIVE that would work. I was just trying to give you a direction to possibly look. All of our maintenance plans are through SQL Agent...
March 25, 2009 at 1:43 pm
On your SSIS package, what is your MaxErrors setting for the package. We had a problem like this because if the package itself throws an error, it fill...
March 25, 2009 at 1:29 pm
Thanks very much. That makes more sense to me now
January 7, 2009 at 5:06 am
It is actually an 8 hours job that runs every night to generate a mini DW, along with index maintenance jobs, extract and load jobs that all run over night....
November 7, 2008 at 11:54 am
I use sys.dm_db_index_usage_stats to find obselete indexes that have not been accessed and are unneeded overhead in the database.
I also use sys.dm_db_missing_index_group_stats and sys.dm_db_missing_index_details to identofy indexes that are missing...
November 7, 2008 at 11:43 am
Yes, boucning SQL will solve the problem, and I can use sp_lock to see what has locks in tempdb at that point in time but that can change byt he...
November 7, 2008 at 8:53 am
The DMV's hold information since the last time the SQL service has been restarted
November 7, 2008 at 8:43 am
I just created a test and it did script the include, but when I have applied index recommendations from the DB Tuning Advicor and then scripted them out, the include...
October 21, 2008 at 3:49 pm
That I understand but I was wanting to find out what would be holding resources in tempdb (which process) for 8 days without releasing them
September 8, 2008 at 1:47 pm
I found what I was looking for
select
j.name as 'JobName',
CAST ( LEFT(CAST(run_date as varchar(8)),4) + '/' + SUBSTRING(CAST(run_date as varchar(8)), 5,2) + '/' +...
June 26, 2008 at 11:28 am
I understand their code should not be on the server. The way our organization works, is the development teams are responsible for their own source control - and they...
June 3, 2008 at 6:21 am
That gives this error which is what I originally tried
Msg 8164, Level 16, State 1, Procedure sp_get_composite_job_info, Line 72
An INSERT EXEC statement cannot be nested.
February 14, 2008 at 8:02 pm
Viewing 15 posts - 1 through 15 (of 17 total)