Tagged Questions
-8
votes
1answer
44 views
C# Connecting to Oracle data base
How to connect to a Oracle Database in C# ?
I need a code with comments explaining it.
I don't want to add the base throw DataSet in Microsoft visual studio... I need to make calls to server with ...
0
votes
4answers
40 views
Connection to Oracle Database with Java
I can't connect to my Oracle database server. This is the code :
import java.util.*;
import java.sql.*;
import java.io.IOException;
public class Knigi {
public static void main(String[] args) {
...
0
votes
1answer
18 views
Tracking down a distributed tranaction error
How can I track down the distributed trans error? Are there any ways to determine all connections are still open? I need to find the transaction that wasn't properly closed?
I'm getting an occasional ...
0
votes
1answer
34 views
Oracle 11gR2 Service Name change to match Instance Name [closed]
I have the below Oracle (lsnrctl services abc)
Service "abc.test123.local" has 1 instance(s).
Instance "abc", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" ...
0
votes
0answers
103 views
SQL state [null]; error code [0]; DSRA9110E: Connection is closed
The below query runs fine in one environment but gives following error in another environment:
SQL state [null]; error code [0]; DSRA9110E: Connection is closed.
Nested exception is
...
-1
votes
0answers
88 views
How to create jar file with database tables,oracle,jdk1.6? Which also establishes connection [closed]
just one thing striking in my mind from many days. Hope you guys will help me for it?
Consider I created Java Stand alone application with Database connection.
Now I want to make installer of it or ...
2
votes
3answers
145 views
How to determine an existing oracle database connection in C#?
Assuming that I call the method below with the right credentials:
private bool Connect(string username, string password)
{
string CONNSTRING = "Provider = MSDAORA; Data Source = ISDQA; ...
1
vote
1answer
29 views
Reuse of OracleConnection object
I would to reuse a OracleConnection object for more queries
so I wrote a simple class:
public static class DbConnectionsManager
{
/// <summary>
///
/// ...
0
votes
1answer
47 views
Oracle eclipse connection
I am absolutely new to oracle.
I am using oracle 10g connection and just on experimental basis trying to connect to HR schema, through the database explorer.
After much difficulty I figured SID, ...
1
vote
1answer
41 views
Cannot connect to Oracle using SID
I m having web application where i connect with oracle with spring
my application is not working if i give SID in xml file
xml file entry is
<bean id="dataSource" ...
0
votes
3answers
55 views
Bridge Between Oracle and MS SQL Server
We are making an application which is machine dependent.
Now we deploy our application on several client machines but problem is that every client have database from different vendors. Currently we ...
3
votes
1answer
129 views
joomla 2.5 - oracle database in different server connectivity
Is it possible to connect to oracle database in a remote server in joomla 2.5 ? I need to set up a 2-way connectivity..1 with the db in my own server which is mysql(configured in configuration.php ...
0
votes
0answers
278 views
Oracle connection string driver (OraClient10g_home1) across various machines
Currently, my team is using in excel VBA an ADODB.Recordset with the following connection string to run queries to our oracle database
Dim conn As New ADODB.Connection
conn.Open "Driver={Oracle in ...
0
votes
0answers
107 views
“Access violation” Error on displaying string of simple Oracle Query (VS10 Exp C++)
I am struggling with an issue regarding running a SQL statement to an Oracle database through C++, using occi. My code is as follows:
#include <iostream>
#include "occi.h"
namespace oc = ...
0
votes
0answers
106 views
SingleConnectionDataSource connection closed after about 40 minutes inactivity
We have a problem with org.springframework.jdbc.datasource.SingleConnectionDataSource?
We expect that the connection is never closed while the application is running, even if there is no traffic ...
1
vote
2answers
79 views
How to set Oracle ClientId field in nHibernate?
Through the use of nHibernate library, is there a way to set the Oracle ClientId off of the connection object? If nHibernate does not support the setting of the ClientId field, what can I do to assign ...
1
vote
4answers
153 views
What's the best way to find DB connections left open in Java code?
We have an enterprise Java project that uses an Oracle DB heavily, supports hundreds of concurrent users, and has been touched by dozens of developers over the last 10 years. Every once in a while a ...
0
votes
1answer
320 views
Can't connect to oracle database from php
I'm having problem connecting to mydatabase from php. I can connect with no problems from my C# code like that:
private void test()
{
string connect = "Driver={Microsoft ODBC for ...
2
votes
3answers
462 views
How Can I Prevent Recurring Automatic Connections to Oracle Database?
Background
We have a C#/VB.net client application consuming a WCF service which connects to an Oracle database. The web service connects to the database using the .NET framework's data provider for ...
1
vote
1answer
101 views
Execute Query not updating records/data
I'm using the database utility Execute Query to experiment with Oracle SQL (10g).
My problem is that even after successfully executing a CREATE TABLE and an INSERT, the records are not shown when ...
2
votes
1answer
3k views
oracle connection String with C# using oledb
Im developing an application in C# that connects to Oracle 10g.
When I use ODP. Net and this
Connection String "Data Source=Angelo-HP/XE;User ID=MAPFRE;Password=123456"
I can connect and perform ...
6
votes
2answers
7k views
OracleConnection.Open is throwing ORA-12541 TNS no listener
So I am connecting to an external server through C#. I just installed Oracle 11g client on my machine from here: http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html (255MB ...
0
votes
1answer
258 views
ODBC SQLDriverConnect not connecting
I am using ODBC API in c++ to connect to a database. I have made my connection function everything worked fine until i got to SQLDriverConnect .
_TUCHAR szConnectOutput[3000];
SWORD ...
0
votes
2answers
792 views
OracleConnection is throwing empty exception
I'm trying to connect to my Oracle Database from my new PC. I've just installed Visual Studio and the ODAC. But when I try to do a simple connect Im getting an exception with an empty message, empty ...
0
votes
2answers
556 views
ORA-03113: end-of-file on communication channel in VB Application upon Database Reboot
I have made a windows service using VB that listens for incoming requests for specific data from table and provides data to the client. The application works fine; however, at night we are ...
0
votes
0answers
68 views
Specifying Oracle command of C# type in c++
I have a C# class, for db connection, that has a class property of type, System.Type.
I am writing a C++ wrapper to use the db connection functionality exposed through the dll.
How can I set this ...
-2
votes
4answers
91 views
How can I get error message?
I want to oracle dabase connection with java.
I use this code :
url = statement;
try {
stmt = connection.createStatement();
rset = stmt.executeQuery(url);
} catch (Exception e) {
// what ...
0
votes
2answers
274 views
Slow Oracle connection on Fedora virtual machine
We have a Java application running on Solaris which makes a connection to Oracle and checks the database for work to perform, and it runs just fine. We tried running the same code on a standalone ...
0
votes
1answer
990 views
Cannot connect to Oracle databse from Toad 9.0
I am using Oracle 10g version 10.0.2
Few days ago I was able to connect to my database using SQLPlus and Toad 9.0
Without changing anything, now Im not able to connect to my database from Toad with ...
0
votes
2answers
6k views
SOLVED: Can't create Database Link to remote DB in Oracle-DB
We have a CRM system in our company, which uses an Oracle 11g database. It is developed by a third party vendor.
We do not have access to the server which runs the CRM system. But nevertheless, we ...
1
vote
3answers
743 views
Is it okay to call OracleConnection.Open() if the connection is already open?
IOW, is there a standard way of testing for this, a la:
if (! con.Open())
con.Open();
?
UPDATE:
I guess I failed to mention that these are Oracle's ODP components I'm using. The OracleConnection ...
3
votes
1answer
2k views
Connecting to Oracle DB using Ruby
I am stuck with connecting to Oracle DB, have read lots of stuff but no help on result.
I have remote Oracle DB, I am connecting to it using DBVisualizer setting connection like this:
DB Type : ...
0
votes
1answer
167 views
Use of 'dual' table using jdbc
I want to test the connection so I am using the query: 'SELECT 1 FROM dual' to compare the value returned.
ResultSet rs = stmt.executeQuery("SELECT 1 FROM dual");
on doing rs.next() the exception ...
0
votes
1answer
372 views
Hibernate - Getting exception : maximum number of processes (550) exceeded
I am using hibernate 3 along with spring.My Hibernate configurations are as under :
hibernate.dialect=org.hibernate.dialect.Oracle8iDialect
hibernate.connection.release_mode=on_close
But after ...
0
votes
1answer
69 views
How to see database connections as a regular developer?
How can a regular developer, without admin privileges on the database, see active db connections - particularly the ones "owned" by them? Not sure if that is the right db terminology. (Application ...
0
votes
1answer
358 views
Can't connect to Oracle DB via JDBC on java desktop app
I was trying to create a very simple app where at loading the main window the program connects to the DB.
If I comment the part of the connection to the DB it works fine. The app shows no error, ...
0
votes
3answers
1k views
Some tricky quick way to validate oracle db connection
My WCF service need to check is connection available now and can we work with it. We have many remote dbs. Their connection are weird sometimes and can't be used to query data or smth else.
So, for ...
0
votes
1answer
92 views
Oracle database connection - without using setUrl
I am trying to use a datasource to get connection to Oracle database.
I am setting the OracleConnectionCacheImpl object with properties like driverType, networkProtocol, user, password, databaseName, ...
2
votes
2answers
2k views
Connecting to oracle database located remotely
I am trying to run following code which is connecting to remote database and retrieving records:
import java.sql.*;
class Employee
{
public static void main (String args [])
...
0
votes
0answers
352 views
Connection in SQL Developer to iSQLPlus
i have problem to connect to school db using SQL Developer. I can connect using browser to isqlplus on port 7778, but when i want to connect by SQL Developer i have error : Error in/out. Socket read ...
0
votes
3answers
5k views
How to use Oracle DMP files?
I have some files of an Oracle database with username and password.
How do I connect to all files and browse the data tables and fields. I want to view all my records in them. Do I install Oracle ...
0
votes
2answers
746 views
Limit ConnectionTimeout for Oracle Database
How can I limit timeout for connecting to Oracle Database? I use devart dotConnect Express Edition on data access layer. I tried add Connection timeout=30; to connection string but it doesn't give ...
0
votes
4answers
2k views
Java/Tomcat and Oracle 10g connection
I'm new to java and Oracle connection I can't establish a connection from java/tomcat service to Oracle database.
I'm using Java JDK 1.7 and Oracle Version:
Oracle Database 10g Express Edition ...
0
votes
1answer
314 views
ASP.NET MVC Can't connect to DB with SqlConnection
I'm trying to create an MVC site that connects to a third-party Oracle DB for which I only have read access. This is my first time using MVC and Razor, so I created an ASPX page in the root folder to ...
0
votes
1answer
2k views
MSDAORA provider not found for asp.net site
I've got stuck with strange Oracle connection error on Windows Server 2003 x64 (IIS 6)
While console .Net application that runs onbehalf of administrator successfully connects to Oracle 10g Express ...
2
votes
2answers
1k views
How to disable autocommit in Eclipse Database Tools for Oracle?
I use Eclipse DTP for database queries. The connection is set to autocommit=true by default. I would like to disable autocommit.
I read this:
...
0
votes
4answers
1k views
check connection from C# app to oracle 10g database
How can I check connection from C# app to oracle 10g database?
For example I have Oracle server on machine with IP 10.50.65.2. I maintain IP, Port in app.config.
I move app to another pc connected ...
1
vote
1answer
74 views
Multiple database connectivity
We have 4 products and each supports below 4 datasources.
Oracle
SQL server 2005
DB2
Datopia
Now We are building Administration product which will interact will all the products and hence their ...
1
vote
1answer
385 views
When using JDBC with Oracle DB how to find if the connection really timed out or if credentials were wrong?
I already have the connection string and DBA username. I accept DBA password from the user.
To check if the password provided by him is correct, I try to create a connection using
String ...
1
vote
3answers
881 views
Does java environment changes value of NLS_DATE_FORMAT parameter?
I have a unix and a linux server used as Database Server and Application Server Respectively.
The Database is Oracle 10g and App Server is Weblogic 9.3 MP3 with jRockit 1.5 installed.
I have a ...



