Forum Replies Created

Viewing 15 posts - 196 through 210 (of 4,745 total)

  • RE: Is this a possible I/O issue?

    yes it is, there could be an issue somewhere in the i/o stack, get your storage people to check it out.

  • RE: table scan stopped

    do you mean its timing out?

  • RE: Log Shipping best practise

    DJH-445911 (5/12/2014)


    Thank you for the replies.

    OK so let it run unless there is a reason to re-initialise. Thank you.

    And I can take a full backup at any time and...

  • RE: Log Shipping best practise

    just let it run, No need to reinitialise unless you get an error (lose a log backup or something)

    Your full backups do not need to be copy_only either, that only...

  • RE: Instance installation date

    Eirikur Eiriksson (5/7/2014)


    george sibbald (5/7/2014)


    river1 (5/7/2014)


    Hi,

    I would like to know in with date did a SQL Server 2005 instance was installed on a server.

    Can I know This using t-sql?

    from glenn...

  • RE: Instance installation date

    without the msdb you cannot retrieve that information.

    If you still have the old msdb as a backup or OS files you could restore or attach it as a user database...

  • RE: Instance installation date

    river1 (5/7/2014)


    Hi,

    I would like to know in with date did a SQL Server 2005 instance was installed on a server.

    Can I know This using t-sql?

    from glenn Berrys diagnostic queries

    -- When...

  • RE: SQL Server 2014 - Service Pack 1?

    Koen Verbeeck (5/6/2014)


    It might take a while.

    The SQL Server team has the tendency lately to release more and more cumulative updates, and less service packs.

    For SQL Server 2012, there's still...

  • RE: index

    try these two, searches plan cache for your index name

    WITH XMLNAMESPACES (DEFAULT 'http://schemas.microsoft.com/sqlserver/2004/07/showplan')

    SELECT

    DB_NAME(E.dbid) AS [DBName],

    object_name(E.objectid, dbid) AS [ObjectName],

    P.cacheobjtype AS [CacheObjType],

    P.objtype AS [ObjType],

    E.query_plan.query('count(//RelOp[@LogicalOp = ''Index Scan'' or @LogicalOp = ''Clustered Index...

  • RE: log shipping with read only mode?

    its not really a disadvantage as you are allowing your secondary to be gainfully used, but you will not be able to restore transaction logs to the secondary whilst users...

  • RE: The Results Tab

    paul.knibbs (5/2/2014)


    Bhaskar.Shetty (5/1/2014)


    The good one and part of our Daily routine

    Is it? I can't recall a situation where I've actually used this facility, although I knew the correct answer...would be...

  • RE: Backup Differential

    save to a new file. Makes restore process easier.

    Backups are i/o intensive, so backup to a different drive. CPU will also increase if compression is used. Use of the database...

  • RE: Should nonclustered indexes include clustered column?

    Gail,

    cheers

    george

  • RE: Should nonclustered indexes include clustered column?

    Gail, is this for performance reasons or safety reasons (CI is changed or dropped), what about the redundancy and space considerations of the CI column(s) appearing twice?

Viewing 15 posts - 196 through 210 (of 4,745 total)