Viewing 15 posts - 46 through 60 (of 319 total)
you should collect audit login and logout event. also check the security audit event.
January 22, 2010 at 5:02 am
you can use performance monitor....DMVs and even third party tools...and also the sql server performance dashboard...
January 20, 2010 at 3:22 am
select * from sys.sql_modules where definition like '%proc name%'
this will give you the definition of sql objects...like sps,funcs,views....
also
sp_helptext procname
will give you the proc definition
January 20, 2010 at 3:20 am
I had a chance to repro the issue. It is certainly not a bug and also there is no need to create a new maintenance plan. Modify the existing plan...
January 18, 2010 at 3:22 am
A single job with a step for each database will be easy to handle and it is what i recommend
January 18, 2010 at 12:53 am
Carolyn Richardson (12/7/2009)
December 7, 2009 at 8:31 am
yes...u are right...I think that there is no other way...
December 7, 2009 at 3:59 am
you can remove the built\Administrator role, though before deleting delete the users in each database related to the above server login and transfer the ownership to new users; also delete...
December 7, 2009 at 2:26 am
an abstract from the BOL:
"BACKUP DATABASE and BACKUP LOG permissions default to members of the sysadmin fixed server role and the db_owner and db_backupoperator fixed database roles."
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/89a4658a-62f1-4289-8982-f072229720a1.htm
December 7, 2009 at 2:12 am
Mani-584606 (12/6/2009)
December 6, 2009 at 10:56 pm
It is not because of windows 7. It happens to me sometimes with windows server 2003. what I have found is that if you have a query open in ssms,...
November 23, 2009 at 9:37 pm
mail.lists (10/29/2009)
Sqlfrenzy (10/26/2009)
kanke (10/25/2009)
the scripts are assuming case insensitive...I spent half hour just want to try to run it, but still not able to due to those up case/lower case.
I...
October 29, 2009 at 9:11 am
kanke (10/26/2009)
I found a quick way, I changed all case to lower case, the only change need to change is INFORMATION_SCHEMA.TABLE_CONSTRAINTS, which should be up...
October 26, 2009 at 9:54 am
kanke (10/25/2009)
the scripts are assuming case insensitive...I spent half hour just want to try to run it, but still not able to due to those up case/lower case.
I didn't get...
October 26, 2009 at 12:15 am
Viewing 15 posts - 46 through 60 (of 319 total)