Viewing 15 posts - 106 through 120 (of 361 total)
From your output, only the default trace is running and there is no way to modify the settings.
You CAN turn it off. but why?
The default trace should be running... by...
February 10, 2010 at 6:50 am
looks like a good idea to me.
I agree on the 'who polices the police' point made by SQLPirate.
This shouldn't run on the agent of each system because the job...
February 9, 2010 at 3:33 pm
I would create the index on the columns in your delete statement's where clause.
It won't take that long if the disk is fairly fast and your delete will be far...
February 8, 2010 at 6:27 pm
I would create the index on the columns in your delete statement's where clause.
It won't take that long if the disk is fairly fast and your delete will be far...
February 8, 2010 at 6:26 pm
select * from :: fn_trace_getinfo(0)
I'm guessing it's the default trace, but who knows.
the trace settings also include a maximum number of rollover files, which will delete the oldest file automatically.
Good...
February 8, 2010 at 6:20 pm
Agent can't run without SQL Server running so that answers the question.
And if SQL Server is running you can't fail over.
It needs to shutdown on one node and the resources...
February 8, 2010 at 1:46 pm
look at the books online for
sysjobactivity
http://msdn.microsoft.com/en-us/library/ms190484.aspx
and sysjobhistory
http://msdn.microsoft.com/en-us/library/ms174997.aspx
They're updated by [msdb].[dbo].[sp_sqlagent_log_jobhistory]
That gets run when SQL Agent finishes a step. When the step = 0 (the whole job)
the...
February 8, 2010 at 1:35 pm
So SQL is still running, I assume... but probably shutting down?
February 8, 2010 at 1:13 pm
use dbcc shrinkfile to shrink the logfile.
Warning:
Many times the logfile is the size it is for a reason...
whether it's logging reindexes or what have you.
If you're really concerned about...
February 8, 2010 at 12:39 pm
You shrink the files with DBCC Shrinkfile
http://msdn.microsoft.com/en-us/library/ms189493%28SQL.90%29.aspx
February 8, 2010 at 6:49 am
Orphaned login.
Run
exec sp_change_users_login 'report'
in the upgraded database and see how many users need to have thier SIDS synchronized or don't exist as logins on the server.
you can fix it...
February 7, 2010 at 10:24 am
I would try something like this:
I usually just write a select statement that works for all cases then add the INSERT on top.
This left join syntax is common for the...
February 6, 2010 at 7:52 am
This should be all the basic info for the default trace.
select * from :: fn_trace_getinfo(0)
where traceid=1
February 5, 2010 at 7:30 pm
Mani-584606 (2/5/2010)
thanks for your hep..But is there no way to find exactly that these Statistics are up to date and these Statistics are outdated in a particular database?
Yep.
see my...
February 5, 2010 at 7:28 pm
Viewing 15 posts - 106 through 120 (of 361 total)