Forum Replies Created

Viewing 15 posts - 4,336 through 4,350 (of 7,168 total)

  • RE: WAN failover

    Async mirroring comes to mind first. Enterprise Edition or Standard? Async mirroring (good for separate geo locations or slower links) is Enterprise only.

  • RE: WAN failover

    It also depends on whether you're talking about failing over to a server in the same physical location. I see you're on a WAN...does this mean the failover server is...

  • RE: Difference Between bpool_visible & max server memory

    When committed reaches target, visible will reach that same level. Visible and target match on all my instances except 1. Why are you concerned about the visible value? Or just...

  • RE: Dynamic sorting; ASC VS DESC

    Makes sense. Thanks for clarifying.

  • RE: Stored Procedure taking more time to execute (Sql Server 2005)

    You still have not provided an actual execution plan. You can save a plan as a .sqlplan file and attach it to the thread.

  • RE: Dynamic sorting; ASC VS DESC

    Chrissy321 (4/25/2012)


    Thanks all. I think having a usable execution plan is going to take precedent in this case so an IF...ELSE block

    would be my best bet.

    This is not a paging...

  • RE: Load Data using SSIS Regularly

    Is the identity column present in the destination? If so you could start your package with an Execute SQL Task to find the MAX value in the destination. Then, using...

  • RE: Schema Qualified object Name

    You're welcome! I am happy you got a working solution 🙂

  • RE: Schema Qualified object Name

    Did you set it to "on change prevent"? Did you enable it after creation?

    If you cannot get it, export the policy and attach it to this thread and I'll have...

  • RE: function/code ??

    MisLead (4/24/2012)


    opc.three (4/24/2012)


    MisLead (4/24/2012)


    Please refer this. Its exactly what i mean-if you still have some time

    I could see if you wanted to tear apart ? into two separate bytes so...

  • RE: function/code ??

    OK, that sounds more sane. I could have understood the example not being representative in terms of the actual characters used, but having the number of characters not be representative...

  • RE: Dynamic sorting; ASC VS DESC

    I have to throw out a blanket-statement here...sorting is expensive and should be left to the presentation layer where possible. The key being where possible, which leaves me an out...

  • RE: function/code ??

    MisLead (4/24/2012)


    Please refer this. Its exactly what i mean-if you still have some time

    http://msdn.microsoft.com/en-us/library/cc194789.aspx

    Yes, Windows uses a double-byte character set internally, with encoding UCS-2...which is the same encoding SQL Server...

  • RE: Want to confirm setup to be able to backup to UNC

    Re: security holes in pass-through auth (leverages NTLM) existed until recently. Make sure your OS is patched:

    Microsoft Security Bulletin MS10-012 - Important > Vulnerabilities in SMB Server Could Allow Remote...

  • RE: List of users in windows group

    EXEC sys.xp_logininfo

    @acctname = 'domain_name\group_name',

    @option = 'members'

Viewing 15 posts - 4,336 through 4,350 (of 7,168 total)