Viewing 15 posts - 3,916 through 3,930 (of 7,496 total)
can you find traces of your missing in action mail in these objects ?
use msdb
go
exec sysmail_help_queue_sp -- @queue_type = 'Mail'
go
select *
-- delete
from sysmail_event_log
order by log_date desc
select *
from sysmail_mailattachments
select...
March 11, 2009 at 4:20 pm
Just prepare your action a little bit, so you don't end up having a dozen of similar indexes.
March 11, 2009 at 8:08 am
No. SA is the sql user which is sysadmin !
It is not the service account!
Do you have your sqlinstance in Mixed authentication mode ?
March 11, 2009 at 3:02 am
hmm ... a whole bunch of clustered index scans.
That indicates absence of usable indexes for the predicates you provided.
Even tough stats indicate only 1 row to return, it...
March 11, 2009 at 2:08 am
Does your SA password match your domain password policy ?
(maybe even change it temporary during the upgrade only)
March 11, 2009 at 1:28 am
Thank you for the feedback.
HTH
March 10, 2009 at 2:23 pm
2 Tim 3:16 (3/10/2009)
Open the Group Policies Console:
START-RUN , enter - gpedit.msc
Computer Configuration - Windows Settings - Security...
March 10, 2009 at 8:55 am
peace2007 (3/10/2009)
...so far as I know rebuilding indexes automatically may cause performance problem is that true or I can create a job to rebuild indexes on a regular basis
Most of...
March 10, 2009 at 2:10 am
thieuquanghuy (3/9/2009)
...
Thanks marina.kudryashov, I wonder if Idera is a shareware.
Thanks ALZDBA, this link http://www.sqlservercentral.com/articles/Administration/64974/ is very useful.
and article in http://www.sqlservercentral.com/articles/Security/66151/ is interesting.
I replace FOR LOGIN_EVENT with FOR LOGON, but...
March 10, 2009 at 12:58 am
I second RBarryYoung's solution.
That's also how we do it if we want to have our own procedures applicable for 3th party databases.
You could use synonyms in your own db...
March 9, 2009 at 11:40 am
/*
http://blogs.solidq.com/EN/rdyess/Lists/Categories/Category.aspx?Name=Memory
I noticed that I could quite a bit of basic memory information from the system
information, so I thought I would show you a very basic query you could use...
March 9, 2009 at 11:28 am
To get your inventory of which db-users to synchronize, you can use this script:
You need to run this script in every database of the sql instance !!!
print 'print @@servername...
March 9, 2009 at 6:02 am
I forgot to reply on your logon trigger.....
Read my little article regarding exactly that:
http://www.sqlservercentral.com/articles/Administration/64974/
But If you're on sp3 you shouldn't have the problems I encountered.
I also advise to read todays...
March 9, 2009 at 12:53 am
you will have to implement it on each and every individual table you want to monitor.
create trALL_yourtable on yourschema.yourtable
for insert, update, delete
as
begin
set nocount on
.....
end
I would advise to log to a...
March 8, 2009 at 1:51 pm
Viewing 15 posts - 3,916 through 3,930 (of 7,496 total)