Viewing 15 posts - 3,646 through 3,660 (of 7,496 total)
Is this proc created using a "execute as ..." clause ??
June 18, 2009 at 4:24 am
Indeed, in that case it is easy to lose track if you do it all by hand without a checklist.
Although we regularly reinstall our dba-systems-test server - and know the...
June 16, 2009 at 11:48 pm
AShehzad (6/16/2009)
Msg 1084, Level 15, State...
June 16, 2009 at 5:56 am
AShehzad (6/16/2009)
CREATE TRIGGER connection_limit_trigger
ON ALL SERVER WITH EXECUTE AS 'login_test'
FOR LOGON
AS
BEGIN
IF ORIGINAL_LOGIN()= 'login_test' AND
(SELECT COUNT(*)...
June 16, 2009 at 4:56 am
- Is the issue causing problems ? (What error do you get)
- Is the client configured exactly the same as the current production system ?
- did you capture and post...
June 15, 2009 at 10:34 am
Forget about AWE on 64-bit systems, 64-bit has enough direct accessable memory you don't need to extend it. IMO enabling it would only cause overhead because sqlserver will use the...
June 15, 2009 at 10:16 am
it depends...
From a dba perspective that migth be enough.
Did you also restore master and msdb ??
If not and your apps are using sql authentictation, they will not be able...
June 14, 2009 at 11:56 pm
Also check the Books Online ref provided in the previous post !
e.g. shrinking a log may not occur when you expect it to, .... BOL explains why...
June 14, 2009 at 12:46 pm
I always try to avoid linked servers !
With sql2008 SSMS you can connect to a server group and execute a centrain sql script at onece on the whole group !!...
June 14, 2009 at 12:43 pm
hmm ... what would firefighters do when they have a calm week ....
Training, reviewing, optimizing,
Training:
- persnol level knowladge and practise training
- refresh known stuff
- evaluate new techniques
- prepare...
June 14, 2009 at 12:39 pm
mark (6/13/2009)
I am attempting to complete some basic SQL training and I continue to receive the following error when attempting to create a procedure with a variable.
"Msg 207,...
June 13, 2009 at 10:47 am
Can you give come config info ?
(both servers/instances)
- OS ?
- sqlserver @@version
- linked server ddl statements/authentication settings
June 11, 2009 at 11:52 pm
I guess you execute a sproc that has been created using "execute as login"
you may be able to actually perform stuff you normaly wouldn't be able to.
create proc usp_SSC_test
with execute...
June 11, 2009 at 10:23 am
We don't use any xprocs, so I didn't have to convert them.
We only used sp_oacreate with smtp mail. These have all been switched to dbmail in sql2005.
Maybe this link is...
June 11, 2009 at 2:31 am
did your sqlserver memory consumption grow contantly during this month ?
If yes, you may be suffering a leak and may need to plan reboots on a regular basis, unless you...
June 11, 2009 at 1:52 am
Viewing 15 posts - 3,646 through 3,660 (of 7,496 total)