Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 2,463 total)

  • RE: Service pack: Where/Why ?

    thanks but can you be more descriptive ? ๐Ÿ™‚

  • RE: Blocking

    Use below queries for troubleshoot.these would be more informative.

    --use ESS_ARCHIVE

    --select * from sys.dm_os_wait_stats

    select r.cpu_time

    , r.logical_reads

    , r.session_id

    into #temp

    from sys.dm_exec_sessions as s

    inner join sys.dm_exec_requests as r

    on s.session_id...

  • RE: Blocking

    pujain (11/11/2010)


    Hi all,

    I am facing an issue where my update statement is blocked by below statement(Inactive):

    "use dbname"

    is any body having an idea why? and whats the workaround to avoid.

    thanks

    Puneet

    ...

  • RE: Output of Query

    Thanks to OP and special thanks to HUGO for great explanation.

  • RE: Single SELECT

    GilaMonster (11/8/2010)


    Why? What's the reasoning behind that odd limitation/restriction?

    This was asked by one of my friend during a quiz

  • RE: Single SELECT

    How

    count(*) over (partition by 1)

    section is working here ?

  • RE: Single SELECT

    thanks dave , but some times i get error that i need to use "order by" with "partition by" , Any idea ?

  • RE: Reorganize Index, Database Integrity check, Update Statistics required for System Databases

    muthukkumaran (11/8/2010)


    1.Backup --yes (Except tempdb)

    2.Reorganize Index --no

    3.checkdb --yes (Except tempdb)

    4.Update Statistics --no

    What about MSDB ?

  • RE: Rebuild Index - Loghshipping

    Our Secondary server is more often in recovering or stand by state and we made it by restoring the full back up of primary one. after that sequence Tlogs from...

  • RE: Issue while configuring Log Shipping on SQL 2005 Enterprise

    Did you check the the log_shipping_alert job (which get created when we use wizard) ?

  • RE: Select * from a table with one billion rows failing

    RPSql (11/3/2010)


    Select * from a table with one billion rows failing with following error (SQL 2005 SP3 HF11)

    An error occurred while executing batch. Error message is: Exception of type 'System.OutOfMemoryException'...

  • RE: Performance Issue

    you can also set profiler trace and check other child SPs which might be cause of bad performance.

  • RE: Rebuild Index - Loghshipping

    sqldba_icon (11/3/2010)


    but indexes are used on queries based on statistics and statistics are stored inside master database of local server. Am i missing anything here?

    In simple language i would...

  • RE: Rebuild Index - Loghshipping

    Yes, the operation is fully logged, so the indexes on the secondary server will be rebuilt automatically.

    However, we donโ€™t recommend that you rebuild indexes often for a log shipping scenario...

  • RE: Selective Index Maintenance

    You can also set a maintenace task or job to rebuild/reorganize the only required indexes OR might be on the required database instead of selecting all DBs

Viewing 15 posts - 1,186 through 1,200 (of 2,463 total)