Viewing 8 posts - 1 through 8 (of 8 total)
Lowell (6/9/2011)
i see it is updating renovest.dbo.[Testtable$Afsl_ Vejehoved] ...what database is the table with the trigger in?...
June 9, 2011 at 4:28 pm
He he, it could look as it's the same due to my mistake. The company name was in the name and I did a search and replace.
It's an equal table...
June 9, 2011 at 8:13 am
Thanks, I will look into that đŸ™‚
/René
May 29, 2011 at 10:01 am
I have the book made by Tom Carpenter and have used it for passing 70-432. I had another book too and find that Tom Carpenters book goes a bit more...
March 29, 2011 at 2:54 pm
Found it, - thanks.
And yes you are right about the ALL SERVER was missing.
/René
March 13, 2011 at 12:39 pm
Sometimes one’s mind plays you a trick. In the attempt to reproduce I did manage to find the right way:
DROP TRIGGER connection_limit_trigger ON ALL SERVER
did it.
Thanks for your help...
March 13, 2011 at 12:32 pm
The executed code are:
CREATE TRIGGER connection_limit_trigger
ON ALL SERVER WITH EXECUTE AS 'navi'
FOR LOGON
AS
BEGIN
IF ORIGINAL_LOGIN()= 'navi' AND
(SELECT COUNT(*) FROM sys.dm_exec_sessions
...
March 13, 2011 at 12:18 pm
Thanks a lot we will try to go this way.
/René
June 26, 2010 at 1:06 am
Viewing 8 posts - 1 through 8 (of 8 total)