Viewing 15 posts - 1,801 through 1,815 (of 5,103 total)
you need to enable that event as a logged event :
select * from master.sys.messages where message_id = 2627 and language_id = 1033
is_event_logged = 0.
To change it use sp_altermessage
Cheers,
August 2, 2007 at 1:22 pm
look in the Errolog it should give you more info
August 2, 2007 at 11:24 am
Not sure why you said that. I just created a test login assingned it to the SQLAgentOperatorRole and the login *can* run SA owned jobs.
Which service pack and Edition are...
August 2, 2007 at 11:15 am
Clear, Simple and to the point.
Good Job!
Thanks,
August 2, 2007 at 8:24 am
It *is* doable:
select a.* from
openquery(SERVERNAME,'SET FMTONLY OFF; EXEC(''dbcc sqlperf(logspace)'')') a
Just make sure that:
1.you have the necessary permissions
2.lazy schemavalidation = true
Cheers!
August 1, 2007 at 9:06 am
Can you please don't turn this thread into another Bankers rounding .... ![]()
PS: "You" know who "you" are
July 30, 2007 at 11:08 am
wow. This thread started in 2003 and still people are re-using it
!
July 30, 2007 at 10:57 am
the fastest method is to create a table in the DB with a TriggerXEnabled property and have the trigger code run with "if not exists( select * from configtable where...
July 30, 2007 at 10:40 am
those upgrades refer to OS upgrades not to DB upgrades
July 30, 2007 at 10:01 am
select *
from [your table]
where datepart(dw, [yourdatecolumn]) in (1,2,3)
July 23, 2007 at 3:09 pm
Or disable the FK but then after you do you will probably need to run dbcc checkconstraint on the FK to mark it as trusted
July 23, 2007 at 3:05 pm
Bill, you got it!
The only thing is that the "columns" fill factor is not applied to the "table column" is applied to the INDEX BTREES that you created.
July 23, 2007 at 2:57 pm
>>>trunacte statements are not logged ... <<
Beg to Differ
.. well slightly
TRUNCATE statement *are* MINIMALLY logged. they are logged; just page deallocations...
July 23, 2007 at 2:49 pm
Viewing 15 posts - 1,801 through 1,815 (of 5,103 total)