Forum Replies Created

Viewing 15 posts - 76 through 90 (of 148 total)

  • RE: How to delete in batches ?

    Just in case you (or anybody else) would like to read yet another post on the topic, I've written about this.



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: SQL Server Perfmon Counter Posters

    Cool, I had the PerfMon counters poster but not the DMV one. Thanks!



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: SQL 2008 SYSADMIN RIGHTS ISSUE

    SQLDBA360 (5/28/2012)


    One other thing is that local administrators of the server are in the sysadmin role by default in SQL 2005 they are not in SQL 2008

    Good point. Also,...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: How can i know which columns are ununsed in my table?

    As far as I know, SQL Server doesn't out-of-the-box record and save column-usage statistics. You'll need to implement your own method here. You can get creative with a...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: When is Update Stats Required?

    When you rebuild an index, the corresponding statistics are automatically updated as part of the process.



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: SQL 2008 SYSADMIN RIGHTS ISSUE

    As per BOL: "Members of the sysadmin fixed server role can perform any activity in the server."

    In either 2005 or 2008, sysadmin is still God rights where members can do...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: Capacity Planning

    Have you been monitoring and recording disk space utilization for the past duration of time? If so, you can use this as trend analysis and see where that is...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: Dirty Reads

    I don't believe this is possible. When a transaction is executing under the READ UNCOMMITTED transaction isolation level, it basically just doesn't issue shared locks. I don't think...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: Performance of jobs

    It all depends on exactly what the jobs are doing. You're basically seeing maximum concurrency (or close to it at least). We need to know a lot more...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: This forum vs. Ask SSC

    Ok that makes sense. Thanks for the explanations!!!



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: unable to attach database

    Ok, Local System is a highly privileged account. It is not recommended to be using this as the SQL Server account. If this is in production, I recommend...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: joins with 3 tables

    Not a problem, and you are correct. I do recommend getting a beginner's book on SQL Server, as there are a lot of introductory topics that are required to...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: joins with 3 tables

    Yes, you can join more than 2 tables. Take this for example:

    select

    *

    from table1 a

    inner join table2 b

    on a.id = b.t1_id

    inner join table3 c

    on a.id =...



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: unable to attach database

    Have you checked to make sure your SQL Server service account has permissions on that file/directory?



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

  • RE: database went offline

    Not sure if this is what you're looking for, but you can set up a SQL Audit, and have a Server Audit Specification with an Audit Action Type of DATABASE_CHANGE_GROUP....



    Twitter: @SQLife
    Email: sqlsalt(at)outlook(dot)com

Viewing 15 posts - 76 through 90 (of 148 total)