Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: Analyzing a log table with T-SQL

    Thank you for the idea! 🙂

  • RE: Analyzing a log table with T-SQL

    Here you are 🙂

    The table DDL:

    CREATE TABLE [dbo].[request_log](

    [id] [int] IDENTITY(1,1) NOT NULL,

    [request_id] [uniqueidentifier] NOT NULL,

    [message] [nvarchar](1024) NOT NULL,

    CONSTRAINT [PK_request_log] PRIMARY KEY CLUSTERED ( [id] ASC )

    )

    Sample data:

    SET IDENTITY_INSERT...

Viewing 2 posts - 1 through 3 (of 3 total)