Forum Replies Created

Viewing 15 posts - 256 through 270 (of 405 total)

  • RE: Transaction rollback in a Trigger

    It will rollback.

    Also see this

    http://msdn.microsoft.com/en-gb/library/ms187844.aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Cancel Restoration

    Restore latest full backup and subsequent log backups.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: sp_updatestats causing bad statistics updates?

    Why are you running sp_updatestats on the database? why these cant be done off peak hours. If you really require more complex index maintenance (if the size is big) try...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Is this a bug?

    I think this is the intended behavior. It is recommended you use set for assignment. Select = will leave the variable untouched if the statement returns no rows.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: backup issues

    Try enabling 'include execution trace' in agent properties. You will get more information in the agent log.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Essential Software

    Performance Dashboard

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Transaction log growth

    Do you have many bulk operations? if so you can try changing recovery model to Bulk logged (After some reading on the topic).

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Error 26 - Error locating Server/instance specified

    Have you tried using port number in the connection string?

    http://blogs.msdn.com/sql_protocols/archive/2006/02/27/unable-to-connect-to-a-sql-server-named-instance-on-a-cluster.aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Lock hints

    Forcing an index may not be good always.

    It says for the plan to use the index even if the optimizer thinks otherwise.

    Nolock hint may seem faster since the query...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Active Node Name in Clustered SQL Server 2000

    Sorry my earlier post gives you the instance nam

    to get hostname,

    select serverproperty('ComputerNamePhysicalNetBIOS')

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Active Node Name in Clustered SQL Server 2000

    EXEC master..xp_getnetname

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SSMS connection Error

    Check the service. does the instance use the default port? How do you connect using ip/hostname. Some times if you have issues with dns the hostname may not work. Ping...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Using a view is degrading Select performance

    can you post the execution plan?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Cross-Database Blocking Problems

    Also CPACKET denotes parallelism waits. You might want to expiriment with MAXDOP settings

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: how many connections/sessions

    You can also query this counter

    select * from sys.dm_os_performance_counters where counter_name like '%user connections%'

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 256 through 270 (of 405 total)