I am trying to add a new connection into Oracle SQL Developer using JDBC.
Here is my VJDBC URL: jdbc:vjdbc:servlet:https://company.plateau.com/vjdbc/vjdbc,db10g
Connection is not working at the moment. Do you know if there is something else to configure?
Thank you for your help,
Damien
Related
Is it possible to create a connection to OBIEE from Oracle SQL Developer?
I know it is possible to create an ODBC connection to the Oracle BI server within the Windows ODBC Data Source Administrator, and that other ODBC client tools can use that ODBC connection to run SQL against the BI server, but I don't see any way for SQL Developer to use that ODBC connection.
I'm on OBIEE 12.2.1.4 and SQL Developer 17.3.0.271.
UPDATE
Based on Robin Moffatt's article at https://rmoff.net/2016/03/28/connecting-to-obiee-via-jdbc-with-jisql/, I used jisql (https://www.xigole.com/software/jisql/jisql.jsp) to set up a connection to OBIEE using the JDBC driver that ships with the OBIEE client -- bijdbc.jar, which is located at $ORACLE_HOME/bi/bifoundation/jdbc/.
Following is a screenshot showing how jisql is able to successfully connect to my OBIEE server via the bijdbc.jar driver and run an example SQL statement; the Oracle-specific connection details are outlined in red:
Screenshot 1: OBIEE JDBC connection test using jisql
My next step was to try to implement this same successful JDBC connection in SQL Developer. To that end, I added bijdbc.jar to SQL Developer's third-party JDBC drivers:
Screenshot 2: bijdbc.jar added to SQL Developer third-party JDBC drivers
After adding the JDBC driver, I did not see a new tab in SQL Developer's connection dialog. (By comparison, in the past, when I have added other third-party JDBC drivers, such as the jTDS and MySQL drivers also seen in screenshot 2, new tabs had become available.)
Since there was not a new tab in SQL Developer's connection dialog, I tried setting the Oracle tab's connection type to Advanced and inserting the JDBC connection string as the Custom JDBC URL. Testing that connection leads to a "String index out of range: -1", as seen in this screenshot:
Screenshot 3: Error using custom JDBC URL in SQL Developer
Since that same JDBC connection string works in jisql, I suspect that either I'm doing something wrong, or SQL Developer does not support connecting to OBIEE via that bijdbc driver.
Ok, fair enough. Have a look at what Andrew did to make the ODBC drivers usable in Excel - it's basically down to manipulating things in Windows:
https://www.rittmanmead.com/blog/2017/02/working-with-obiee-data-in-excel-using-odbc/
Just adding a final answer here in case anyone stumbles upon this page asking the same question:
No, SQL Developer does not currently support connecting to an OBIEE server, although other tools can be used to connect to the server using either ODBC or JDBC.
I am new to Oracle, I have installed Oracle Server 11g2 and Oracle SQL Developer (client) tool.
I am able to connect server from command prompt successfully, please have a look here : http://prntscr.com/hytzdn
I am trying to connect the server from Oracle SQL Developer (client) tool but it's not allowing me. I am getting this SID specific error : http://prntscr.com/hyu1i2
Can someone please help me to resolve this?
Thanks in advance.
In your command prompt connection type this query
select * from global_name;
Then in sql developer change your sid name with the query result.
I tried to connect my database application to a .sdf database, but there there is no sqlce driver listed there to build my connection string. can anyone suggest me a way.
can anyone tell me, from where i can download sql server ce driver, if there is any
Unfortunately there isn't any ODBC driver for Compact Edition. But you can use this to connect
OLE DB
Source: Paul Sasik
I have a SQL Azure database and Oracle SQL Developer. I want to connect to my Azure instance using Oracle SQL Developer. SQL Developer needs JDBC drivers to work with MSSQL databases. The jTDS driver works with SQL Developer but not with SQL Azure databases (apparently). The 4.0 version of the MS JDBC Driver works with SQL Azure but not with Oracle SQL Developer (apparently). Has anyone else been here and found a solution?
There is no problem using the JTDS driver but it is required to add ssl=require
So string is like:
driver=net.sourceforge.jtds.jdbc.Driver
database=jdbc:jtds:sqlserver://YourSQLServer.database.windows.net:1433/YourDBName;ssl=require
I am trying to connect oracle 10g database through n hibernate,
can anyone help me the preliminary steps to be done to establish the connection,
I've connected sq l server 2000 easily and its working fine, now i try to connect oracle
but i am getting error "cannot open connection". please help me in this regard.
Thanks in advance.
Venkatesh D.
For connection to the Oracle I have used Oracle data provider. And about configuration you can try to have a look here it helped to me.