Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • Reply To: Very large t-log with backups

    Before and after backup log, can you run this command and post the result here?

    dbcc sqlperf(logspace)

    this command could return the physical and logical size of actual log. Sometime, the physical...

  • RE: Why index scan instead of index seek?

    Eirikur Eiriksson (11/6/2014)


    Quick thoughts, first is that the non-clustered index is not a covering index and will require an additional key lookup to satisfy the query output. Therefore the server...

  • RE: Why index scan instead of index seek?

    Sorry guys, tied up on other stuffs yesterday, here is the schema of table:

    CREATE TABLE [dbo].[Testing_table](

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

    [message] [nvarchar](max) NULL,

    [message_text] [text] NULL,

    [name] [varchar](10) NULL,

    [created_date] [datetime] NOT NULL,

    CONSTRAINT...

  • RE: exec commands stored in a variable

    o... thanks a lot !!!

    exec 2 query separately is a good idea, thanks to knock me up !!!

Viewing 4 posts - 1 through 4 (of 4 total)