Forum Replies Created

Viewing 15 posts - 46 through 60 (of 319 total)

  • RE: Monitor how many users connected to a particular database

    you should collect audit login and logout event. also check the security audit event.

  • RE: Performance Database Information DMVs Growth Information

    you can use performance monitor....DMVs and even third party tools...and also the sql server performance dashboard...

  • RE: system procedure to get the details of the user defined stored procedure

    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

  • RE: Database Mail

    can you post the configuration details ?

  • RE: Maintenance Plan

    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...

  • RE: Run Single Job instead of Multiple Jobs

    A single job with a step for each database will be easy to handle and it is what i recommend

  • RE: Backup error

    Carolyn Richardson (12/7/2009)


    Users only need to be members of the fixed role db_backupoperator to be able to take backups, they do not need to be system administrators, as mentioned by...

  • RE: Backup error

    yes...u are right...I think that there is no other way...

  • RE: restrict windows authentication login

    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...

  • RE: Backup error

    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

  • RE: Insufficient system memory to run this query.

    Mani-584606 (12/6/2009)


    Could you please advice me on viewing these standard reports from management studio? because when ever I open this reports, I'm getting Memory issues, seeing low virtual memory message...

  • RE: SQL Server 2005 and Windows 7

    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,...

  • RE: Index Management

    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...

  • RE: Index Management

    kanke (10/26/2009)


    one example is IndexUsageToSizeRatio and IndexUSageToSizeRatio.

    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...

  • RE: Index Management

    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...

Viewing 15 posts - 46 through 60 (of 319 total)