Forum Replies Created

Viewing 15 posts - 301 through 315 (of 497 total)

  • RE: Server Security

    Elliott Whitlow (12/9/2013)


    If they are a member of the sysadmin server role you can't. My understanding was that effectively that role bypasses all security checks, so even a deny...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Server Security

    So we have the following: restrict a single user that has sysadmin rights through a group membership. What are the restrictions you want? No access?



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: A time out occurred while waiting to optimize the query. Rerun the query.

    This shows that your system is experiencing memory pressure at that time. Have you confirmed that nothing new was installed on your box that could be causing external memory pressure...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Server Security

    I don't understand your question. You currently have a user that has sysadmin rights to your SQL server and you want to restrict their access? How far do you want...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Issue with rebuilding indexes and transaction log file size

    You can not prevent the index rebuilds from growing the LDF file. As for the second question it really is up to you if you can rebuild your indexes once...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: backup chain on testing server

    sqlfriends (12/5/2013)


    Thanks, let me redescribe some of the info. Note I deleted the copied over backup files from production to test after restore.

    We do backup on both test server and...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: backup chain on testing server

    That is great that you are testing your backups by restoring them. I believe that your question is this: If I restore a backup (full + diff + tlogs) do...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: executing dynamic sql string

    Can you post the entire statement that is causing the error?



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Select top X for each multiple item in column

    Welcome! Please take a look at the article in my signature about posting questions to the forums. Table definitions and sample data is always useful. What I would recommend iswith...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Orphan login issue

    In your script that you have to create the logins in dev you need to add the following:

    , CHECK_POLICY = OFF to turn off the password policy. After that try...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Dropping thousands of tables programmatically?

    When you test this procedure please note the size of your transaction log and then pre-grow the tlog in production. You don't want to have your tlog auto-grow in production...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Timeout error while connecting to SQL instance

    Have you viewed the error log? http://technet.microsoft.com/en-us/library/ms187885(v=sql.105).aspx If so, what was listed?



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Dropping thousands of tables programmatically?

    500,00 tables? Wow :crazy:

    Why wrap the script in a transaction? Does it have to be an all or nothing type thing? Also, there is no way to grammatically return the...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Mirroring with Replication

    I have used that same whitepaper with great efficacy. I would double check that you have both publishers (principal and mirror) configured to use the same distributor with identical settings....



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Who is in the DBO group for all dbs.

    Here is the query:

    SELECT

    USER_NAME(memberuid) as Member

    ,USER_NAME(groupuid) as [Group]

    FROM

    sys.sysmembers

    WHERE

    USER_NAME(groupuid) = 'db_owner'

    and you can use sp_MSforeachdb to run it for all databases on your...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 301 through 315 (of 497 total)