while opens the Oracle database facing some error - oracle11g

Hi i am trying to install oracle, i installed completed but while is open the database control- orcl , error is coming in browser that " Your connection is not private".

First of All Oracle doesn't provide web interface so don't try to open on browser. and if don't know how to create DataBase than you should watch this video
https://www.youtube.com/watch?v=hoMiy5vlhU4
I know web interface for MySQL and MSSQL but i don't know any web interface for Oracle 11g.

Related

Ora 01017: Invalid Username/Password using Oracle SQL Developer OS Authentication

I have downloaded Oracle SQL Developer from Oracle website. I have extracted the files in C: drive and executing the program from there. I am trying to connect to a database using TNS which is successful when using SYS login. I then created a user as per my AD login "DOMAIN\USERNAME" and given proper roles , access etc. When I try to create a new Connection in SQL Developer using OS Authentication, I get the Ora 01017 error. This login is set to "identified externally"
However, if I use the SQL Developer that comes with Oracle 11G Client then it works well for OS Authent. I want to use the latest SQL Developer with OS Authen I downloaded but stuck as it gives the ora01017 error.
has anyone seen issue like this? also what would be the recommended setting for remote_os_authent and sec_case_sensitive_logon in case these are causing the issue?

sqldeveloper with 11gR2 client

I've installed win64_11gR2 client from here http://www.oracle.com/technetwork/topics/winx64soft-089540.html. I want to install sql developer. I understand that I'll have to use sql developer 2.1 or later. I do not see network/admin folder after 11gR2 installation to put my tnsnames.ora file. Any document/guidance to install/config sqldeveloper with this client will be appreciated. Thanks.
You don't need win64_11gR2 client to run SQDeveloper.
Also you don't need to configure tnsnames,ora file to connect to the database from SQL Developer
Just download SQL Developer, run it, add Database Connection and connect.
See this tutorial: http://st-curriculum.oracle.com/tutorial/SQLDeveloper/index.htm

CyrstalReport connection to Oracle DB on ASP.NET site do not work

I setup a small asp.net site with CrytsalReportViewer web component (V13). The display of reports works well and now I would like to refresh the data in the report.
The report was created with Oracle ODBC connection and works on my PC. When I try to refresh data on the asp.net web site, which runs on WinXP (32Bit), CR shows me always a dialog to enter/verify db values like server name, user and password.
The DB values are correct and the Oracle ODBC Client (10.2.0.1) 32Bit is installed and configured. I can tnsping my database and the ODBC connections works well too. It looks like CrystalReports cannot find the ODBC which is specified in the report although the ODBC connection with this name exists.
Any idea what I can check to make it work?
Is there any logfile of CrystalReportViewer component to see why CR cannot connect?
Thanks in advance,
AlexS
I Got it. After installing another Oracle client (11g R2) it works perfectly. It seems that old Oracle client 10.2.0.1 is not full comapatible with the current CrystalReportViewer version.

Establishing connection to SQL Server Error

I opened my web project today and for some reason I could not gain access to my database files. I get the following exception whenever I try to add, edit or refresh my database:
A network related instance specific error occurred while establishing
a connection to SQL Server. The Server was not found or is was not
accessible. Verify that the instance name is correct and that SQL
Server is configured to allow remote connections.
I took a look at my connection string for any spelling errors and deleted my database and replaced it in the folder I had it in. I can't seem to find a fix for this so any help would be a appreciated. I am using Visual studio 2008 for this web project.
This sounds like the same problem that I had myself awhile back. My problem was that my SQL service pack 1 did not install properly so I had to install Microsoft SQL Server System CLR Types, Microsoft SQL Server 2008 Management Objects and Microsoft SQL Server 2008 Native Client. After that I could create new SQLdatasources but I could not edit the ones I had previously before my problem. I had to restart my computer in safe mode and delete my SQLEXPRESS folder then recreate the database connection in visual studios. When I finished that everything worked fine.
This is the site I got those downloads, http://blogs.cametoofar.com/post/cannot-load-file-or-assembly-microsoftsqlservermanagementsdksfc.aspx

ORA-06413: Connection not open. from ASP.NET and Oracle 10g

I am trying to connect oracle 10g 32 bit from a c# asp.net web application using oledbconnection and getting the following error :
ORA-06413: Connection not open.
It's connecting properly from windows application and TOAD/SQL* PLUS.
I googled the problem and tried all the possible solution (checking special character) but none of them helped.
Please help.
The problem could be that your .exe filename has more than one ".", or if your file path has parenthesis "()":
https://forums.oracle.com/forums/thread.jspa?messageID=10129961
After creating a connection object. You have to open the connection to execute the SQL commands.
Lets say you created a connection object of oracle with name oracleConnection.
Then after that you have to use
oracleConnection.Open();
to open the connection to the oracle database you are trying to connect.
The other problem may be with your oracle service which might not be running. so check that the oracle service is running in the background.
I did it atlast. I uninstalled VS2010 from my machine. Format it. Again i install VS2010 in a new folder in c: called VS2010. Now its going fine. Thanks anyway all of you for your response.

Resources