Database mirroring with SQL Server 2005

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Re: Database mirroring with SQL Server 2005

    Well, first of all mirroring is not yet officially supported in sql2005.

    And microsoft has a JDBC driver that supports mirroring that should work
    with CF although I have not tried it:

    [url]http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/jdbc.mspx[/url]

    ALi

    "tonyweeg" <webforumsuser@macromedia.com> wrote in message
    news:dnupnu$t45$1@forums.macromedia.com...
    > eddie... any luck with this yet?
    > i know that .NET has a parameter in its connection string for "Failover"
    > and
    > you specify the failover database, but im not sure cfmx will be able to
    > handle
    > this...
    >
    > anyone from macromedia / adobe have any ideas?
    >

    Ali Soylu Guest

  2. Similar Questions and Discussions

    1. ASP Server controls in VS.NET 2005
      Hello! There is posibility to create server controls using form designer in VS 2005. Is posible to compile server control that was developed by...
    2. eport a database from ms sql 2005 to ms sql 2000
      Hi: I have Microsoft SQL 2005 Standard in my PC, I use CF 7.0/MS SQL 2005 to make my application. I bought a 2 year hosting from Webserve.ca (NT...
    3. SQL Server 2005 Help
      I have only used access in the past and am brand new to sql server 2005. I installed sql server 2005 (developer edition) on my computer and used...
    4. trying to access sql server 2005 database
      I have Dreamweaver MX 2004, trying to access sql server 2005. I can not get the SQL server driver on dreamweaver to successfully connect to sql...
    5. ANNOUNCE: DBD::Informix - IBM Informix Database Driver for PerlDBI Version 2005.01 (2005-03-14) released
      IBM Informix Database Driver for Perl DBI Version 2005.01 (2005-03-14) has been uploaded to CPAN. IBM Informix Database Driver for Perl (also...
  3. #2

    Default Re: Database mirroring with SQL Server 2005

    What I am going to do is use the standard DataDirect JDBC driver, which has a
    url connection string argument 'AlternateServers' that you can supply that will
    connect you to the specified alternate db server in the event that it cannot
    connect with the primary db server specified.

    Currently you have to change the neoquery.xml file config map to fix a bug
    whereby anything you supply in the connection string box doesn't actually get
    appended to the connection string. Once you have got over that, just supplying
    'AlternateServers=(\\alternate-server:1433)' does the trick.

    eddieralph Guest

  4. #3

    Default Re: Database mirroring with SQL Server 2005

    Did this work?

    What is the neoquery.xml bug, and how do you fix it. I was unable to find anything in support about it.

    Thanks in advance.

    Rob
    rgrossha Guest

  5. #4

    Default Re: Database mirroring with SQL Server 2005

    The neoquery.xml bug is that if you enter anything into the (advanced)
    connection string box, they don't get properly appended to the connection
    string. In order for any connection string arguments to be appended properly
    to the connection string you have to modify the neoquery.xml file as follows:

    Find


    jdbc:macromedia:sqlserver://:;databaseName=;SelectMethod=;sendStringParameters As
    Unicode=

    you need to add ";" to the end


    jdbc:macromedia:sqlserver://:;databaseName=;SelectMethod=;sendStringParameters As
    Unicode=;

    Ed

    eddieralph Guest

  6. #5

    Default Re: Database mirroring with SQL Server 2005

    I forget where I found the fix for this bug, but I have spoken to a MM engineer about it - they said it was being worked on... (it isn't hard to fix so would have expected a hotfix by now...)
    eddieralph Guest

  7. #6

    Default Re: Database mirroring with SQL Server 2005

    Thanks.

    No fix that I've found either, but there is documentation for your workaround,
    plus guidance on the latest released data direct drivers:

    [url]http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=42dcb10a[/url]

    rgrossha Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139