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
Related
I am working on an ERP Project, using sql server for database.
Now when I deploy the project, I have to install sql server which uses a lot of storage and time is also wasted. As the client is never going to fire any query. Thus, having no need of the development environment. So, is there any option to overcome this.
Local DB is one of the option but having difficulties in configuring it. If anybody ever used it and Please help me out. Or if there's any other option please help me with that
NOTE: I am using asp.net as front end technology
I'm not sure if this is what you're trying to do, but if you want your app to connect to an SQL Server database, you will need at least the OLE DB Driver to be installed on your server.
It will allow your app to connect to an SQL Server instance, which can be running on any other machine.
In complement you could have a look at this : https://www.connectionstrings.com/
and this https://learn.microsoft.com/fr-fr/sql/connect/oledb/oledb-driver-for-sql-server?view=sql-server-ver15
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.
can we install informatica server and client in one machine?
I am facing issues with configuring the odbc for informatica. Can anyone please let me know how to configure it.
Yes, you could install the PowerCenter client on the same machine as the server.
To enable Oracle connectivity via ODBC you will need to install and configure the Oracle Instant Client (or equivalent). Once you have a connect string from your tnsnames.ora file you can configure an ODBC connection using the Data Sources (ODBC) configuration page (assuming you are using Windows).
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.
I am getting following error when I run my website on my laptop which i created on another computer
The database 'C:\DOCUMENTS AND
SETTINGS\ASIF\DESKTOP\APP\WEBSITE\APP_DATA\DB.MDF'
cannot be opened because it is version
661. This server supports version 612 and earlier. A downgrade path is not
supported. Could not open new database
'C:\DOCUMENTS AND
SETTINGS\ASIF\DESKTOP\APP\WEBSITE\APP_DATA\DB.MDF'.
CREATE DATABASE is aborted. An attempt
to attach an auto-named database for
file C:\Documents and
Settings\asif\Desktop\App\Website\App_Data\DB.mdf
failed. A database with the same name
exists, or specified file cannot be
opened, or it is located on UNC share.
Please suggest me solution to this.
Regards,
Asif Hameed
Version 661 is SQL Server 2008 R2. You are trying to attach a database created with this version to an earlier version of the engine, which is not allowed.
Are you trying to use a SQL Server 2008 R2 database in SQL Server 2005? They are not backwards compatible.
See http://forums.asp.net/p/1560835/3859344.aspx and http://social.msdn.microsoft.com/Forums/en/sqlexpress/thread/2744a003-d61c-4d3d-93c2-af946e141e7e.
Edit
Also, if you have multiple SQL Server engines installed, make sure connection is pointing to the correct one. It might be an instance name like computername\instance instead of just computername.