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,
* Noel
August 2, 2007 at 1:22 pm
look in the Errolog it should give you more info
* Noel
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...
* Noel
August 2, 2007 at 11:15 am
Clear, Simple and to the point.
Good Job!
Thanks,
* Noel
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!
* Noel
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 ![]()
* Noel
July 30, 2007 at 11:08 am
wow. This thread started in 2003 and still people are re-using it
!
* Noel
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...
* Noel
July 30, 2007 at 10:40 am
those upgrades refer to OS upgrades not to DB upgrades
* Noel
July 30, 2007 at 10:01 am
select *
from [your table]
where datepart(dw, [yourdatecolumn]) in (1,2,3)
* Noel
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 ![]()
* Noel
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.
* Noel
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...
* Noel
July 23, 2007 at 2:49 pm
Viewing 15 posts - 1,801 through 1,815 (of 5,103 total)