Forum Replies Created

Viewing 15 posts - 151 through 165 (of 471 total)

  • RE: Full Recovery Model

    Interesting question that took some thought. Thanks for the explanation Hugo.

  • RE: MSDB Tables/Views

    David Burrows (3/6/2012)


    John Hanrahan (3/6/2012)


    Glad you all enjoyed the question. I enjoyed the 'whininess' and 'pendaticness' of some of the responses. It's all good.

    At least I got a...

  • RE: SQL Server Agent Roles

    george sibbald (2/28/2012)


    Koen Verbeeck (2/27/2012)


    Quite easy, as the question on 7 February asked which role was the least privileged 🙂

    explains the deja vu.

    now we need a question on which role...

  • RE: SQL Server 2008 R2 Data Types

    Very nice. Thanks for sharing this.

  • RE: Service Service Accounts

    Henrico Bekker (2/24/2012)


    Erm....the answer options were incorrect. only 1 option was correct.

    select * from sys.dm_service_services --<-- As in the question, this doesnt exist

    select * from sys.dm_server_services --<-- As in the...

  • RE: Database Restore

    GilaMonster (2/21/2012)I'd reference an article, but it hasn't been published yet. Refer to Kalen Delaney's SQL Server 2008 Internals, or Books Online.

    Kalen Delaney's SQL Server 2008 Internals is a...

  • RE: Hash Join

    I have never seen the term Grace Hash Join before and I have been doing this for a long time. Is it named for Grace 'The Great' Hopper per...

  • RE: T-SQL Performance 1

    L' Eomot Inversé (2/18/2012)


    Cliff Jones (2/18/2012)


    DBA_Dom (2/17/2012)


    bitbucket-25253 (2/17/2012)


    SQL Kiwi (2/17/2012)


    Cliff Jones (2/17/2012)


    Interesting but I don't think I want my developers to discover the FORCESEEK hint.

    This is completely the wrong approach,...

  • RE: T-SQL Performance 1

    DBA_Dom (2/17/2012)


    bitbucket-25253 (2/17/2012)


    SQL Kiwi (2/17/2012)


    Cliff Jones (2/17/2012)


    Interesting but I don't think I want my developers to discover the FORCESEEK hint.

    This is completely the wrong approach, in my opinion. I...

  • RE: T-SQL Performance 1

    SQL Kiwi (2/17/2012)


    L' Eomot Inversé (2/17/2012)


    I guess FORCESEEK always works, though (?).

    Nothing always works :-). FORCESEEK will result in a plan with a seek operation on the hinted table...

  • RE: Read Uncommitted, locks, and transactions

    cengland0 (2/14/2012)


    Cliff Jones (2/13/2012)


    Yes, that was the way I always did it also. It was very fast but then you had to deal with all those pesky named constraints...

  • RE: EXECUTE

    bminch (2/14/2012)


    While its certainly easier to use brackets/parenthesis around @sqlstring don't forget about sp_executesql.

    declare @sqlstring nvarchar (255)

    set @sqlstring = 'use ' + 'master' + ' dbcc showfilestats'

    execute sp_executesql...

  • RE: Read Uncommitted, locks, and transactions

    L' Eomot Inversé (2/13/2012)


    Great question, very well presented.

    In the bad old days of SQL 2000 I used to solve this sort of problem using sp_rename.

    Something like

    if exists (select *...

  • RE: HASHBYTES

    The question could have been worded a bit better but a good question none the less and an interesting discussion as always.

  • RE: Fun with sp_executeSQL

    ganci.mark (1/31/2012)


    Great article David. Thank you.

    I thought that there were limits imposed on the various memory components based on on the total amount of memory given to SQL Server.

    For example:...

Viewing 15 posts - 151 through 165 (of 471 total)