Viewing 15 posts - 271 through 285 (of 355 total)
DENY SELECT ON Table1 TO user1?
April 21, 2011 at 3:23 pm
Similar thread here
http://www.sqlservercentral.com/Forums/Topic1059299-391-1.aspx#bm1087746
April 20, 2011 at 11:20 am
I have WMI based alerts configured to notify me.
SELECT @instanceName = CONVERT(NVARCHAR(128), SERVERPROPERTY('InstanceName'));
SELECT @namespace = N'\\.\root\Microsoft\SqlServer\ServerEvents\' + @instanceName;
SELECT @wquery = N'SELECT * from DATABASE_MIRRORING_STATE_CHANGE
WHERE State =...
April 20, 2011 at 11:17 am
This is better
select * from sys.messages where language_id = '1033' and text like '%mirror%' order by message_id
April 1, 2011 at 4:58 pm
I've noticed a lot of the wmi state change events don't seem to have corresponding event IDs, like synchronizing and synchronized. I'm curious to know what you end up...
April 1, 2011 at 4:45 pm
April 1, 2011 at 4:10 pm
I'm thinking I should just setup all my servers to use GMT no DST from now on...that's not way to not have to deal w/ any of it 🙂
November 2, 2010 at 1:49 pm
dbcc shrinkfile, it's in books on line
October 25, 2010 at 3:40 pm
I put up a similar post a few weeks ago and didn't hear anyone having troubles. I've yet to install it.
October 25, 2010 at 3:39 pm
FYI, tempdb got hammered and grew quite a bit on my test server
October 25, 2010 at 3:23 pm
Create a WMI based alert to trigger a job that runs an SSIS package when a new file is written.
October 22, 2010 at 2:31 pm
Thanks, we had to forgo reindexing on this 14GB DB until we get more disk space, so I'm trying to avoid a disk space / tlog out of space error...
October 22, 2010 at 1:32 pm
When I have issues with log shipping I have verified that no transactions have happened by verifying the LSN number hasn't changed when looking at the sql log for the...
October 19, 2010 at 12:57 pm
October 19, 2010 at 9:34 am
Viewing 15 posts - 271 through 285 (of 355 total)