Ask a Question related to Coldfusion Database Access, Design and Development.
-
Amja #1
Handling multiple database server instances - failover
Hi all,
I have a oracle tnsentry like this. It has multiple failover instances for the
oracle database.
TESTSID =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28a.test.com)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28b.test.com)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28c.test.com)(PORT = 1521))
(LOAD_BALANCE = yes) (FAILOVER = true)
)
(CONNECT_DATA =
(SERVICE_NAME = TESTSID)
)
)
I dont know, how to configure this datasource to access from coldfusion admin.
Please advise.
Thanks,
Amjath
Amja Guest
-
Blazeds server push and multiple flex instances
I am working on a project to push data from a server to a flex chart drawing application. However each chart needs to run as its own page. Up til... -
ORIGIN Servers: Multiple, or Failover?
Situation: Multiple edge servers. Mulitple origin servers. Problem: How can an edge server detect /use/be configured to talk to mulitple... -
Different JVM Heap Size on Multiple Server Instances?
I can't find where it is possible to set individual JVM Heap sizes for different instances in a Multiple Server install. According to the Macromedia... -
Draging multiple instances of multiple objects
When I try this - dragging multiple instances of multiple objects onto a canvas area i have made the object instances dont stay around... For... -
Multiple Instances of SQL Server 2000
We have just created 6 new instances of SQL Server 2000, each one to handle specific functions. The problem that I have got at the moment is... -
Amja #2
Re: Handling multiple database server instances -failover
The problem here is if I want to create a dsn in coldfusion MX, it asks for SID and the server name. But here I have multiple servers how do I handle this while creating a DSN.
Amja Guest
-
philh #3
Re: Handling multiple database server instances -failover
Can't you create one name that represents the "cluster" to the outside world?
We have MSSQL clusters that are accessed through a virtual name, that is, the
server known as "public" doesn't really exist; it's a pointer to the cluster
set. Yet all our apps think that "public" is a living, breathing SQL server.
philh Guest
-
Amja #4
Re: Handling multiple database server instances -failover
Thanks phil.
This is in oracle.
I have resolved the issue., while creating the dsn, I gave the following
information. I didnt select the oracle native driver, instead, I went to the
'other drivers' section and gave the following information.
CF Data Source Name : mycfdatasourcename
JDBC URL : jdbc:oracle:thin:@(DESCRIPTION = (DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28a.test.com)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28b.test.com)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = srvr28c.test.com)(PORT = 1521))
(LOAD_BALANCE = yes) (FAILOVER = true)
)
(CONNECT_DATA =
(SERVICE_NAME = TESTSID)
)
)
Driver Class : oracle.jdbc.OracleDriver
Driver Name : Oracle Thin Driver
username : myuser
password : ???????
Description : ANything
Amja Guest



Reply With Quote

