Forum Replies Created

Viewing 15 posts - 136 through 150 (of 825 total)

  • RE: The Offensive Line

    Koen Verbeeck - Wednesday, August 30, 2017 1:14 AM

    It may be my lack of understanding of American Football positions, but I really...

  • RE: The Missing Price

    n.ryan - Monday, July 17, 2017 3:16 AM

    That was my thought as well - there were two valid answers, and fixing neither...

  • RE: Dynamic SQL

    Sean Lange - Tuesday, July 11, 2017 2:30 PM

    Carlo Romagnano - Friday, July 7, 2017 1:32 AM

  • RE: Dropping PKs

    Confused question!
    If the author intended the primary key is clustered, this apply (from BOL):

    When a constraint that created a clustered index is deleted, the data rows that...

  • RE: Dynamic SQL

    Here a cursor free version:
    DECLARE @TableName SYSNAME = 'MyTable',@Schema SYSNAME = 'dbo', @sql NVARCHAR(MAX) = '', @max-2 INT
    ,@UnionALL NVARCHAR(11)= '';

    SELECT @sql += @UnionALL +...

  • RE: OUTPUT clause with an update

    tom.w.brannon - Wednesday, June 21, 2017 5:45 AM

    I don't understand why deleted only shows the first row from each group.  The join...

  • RE: DBCC SQLPREF

    Assuming we use DBCC SQLPERF with the parameter LOGSPACE the explanation is wrong.
    "Check the amount of space available in a transaction log file."

    BOL says the opposite "amount...

  • RE: I want back my Points

    nscheaffer - Wednesday, June 7, 2017 2:01 PM

    I have been working with SQL Server for a long time, but I don't fully...

  • RE: STUFF

    John Mitchell-245523 - Tuesday, May 2, 2017 3:06 AM

    If expression is NULL, zero length data is inserted

    Do you know whether that's...

  • RE: Minimal Config Restrictions

    About the "tempdb", here says that it is configured at the smallest possible size.
    https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/start-sql-server-with-minimal-configuration

  • RE: Pinned Tables

    Correct and incomplete answer: "This lets me know if the Order table is in the buffer pool", it always returns false.
    Ambiguous answer: "This tells me nothing as tables cannot...

  • RE: Finding Triggers

    The best method is the following:
    SELECT COUNT(*) FROM sys.triggers
    WHERE parent_id = OBJECT_ID('TriggerTest')

  • RE: Finding Triggers

    George Vobr - Thursday, March 2, 2017 8:52 AM

    Interesting question, thanks Steve, to exercise logical reasoning...😉
    That a table has INSTEAD OF Trigger...

  • RE: Finding Triggers

    Magnus Ahlkvist - Wednesday, March 1, 2017 11:56 PM

    One can define Instead Of Triggers on a table and the count for these...

  • RE: Mixed page allocation

    TjhomasH6610 - Tuesday, February 14, 2017 1:24 AM

    Great question, but I think the answer is incorrect.
     The first reference states "This setting is...

Viewing 15 posts - 136 through 150 (of 825 total)