oracle-xe

Oracle XE or SQL Server Express

Hi people, I'm starting a new project here (Windows Forms) and was wondering what's the best option today for a small (free as in beer) dbms. I've used SQL Server Express on the past projects, but time and time again I hear people saying that the product from Oracle is faster and more powerful. It will be used in a small company (aroun...

How to disable Oracle XE component which is listening on 8080?

After installing Oracle XE, something in Oracle is listening on port 8080. I am not sure if they have an Apache HTTPD, a Tomcat, or something else. But how can I disable it? ...

Oracle Express Edition - Can not connect remotely (plus others)

I'm unable to make a remote connection to an Oracle XE install (through TOAD / SQL Developer). Here's the deal. I set up a new server (windows 2003). The goal was to make a new image with several applications preinstalled, Oracle XE being one of them. Got Oracle installed no problem, connected locally, remotely and had access to the ...

oracle express detatach

Hi I am new and I am used to MS SQL Manager's Attach/Detatch functionality to drop a database into a single file so I can move it to other computers/SQL instances. In a nut shell, this is what I want to do. I have a large Oracle Express database (instance name Zeus) that I need to move onto other Oracle Express instances (brand new inst...

Oracle XE for Linux...?

Is there a Linux version of Oracle XE? I could not find any info on Oracles official site. ...

How can I change the SID of an Oracle XE instance.

I needed to change the SID of an Oracle XE database (not the Service Name) to match a production database. When I tried searching online, most of the pages were describing changing or adding a service name through tnsnames.ora; that's not what I needed to do. ...

Installed Oracle Express - Can't login

I just installed Oracle Express edition. During the installation it asked me to set a password but not a username. After the installation completed, it directed me to a browser window and asked me to login with a username and password. The password I know but the username I don't know. Is this an IQ test? Did I fail it? ...

Oracle 10g express home page is not coming up

I installed Oracle 10g express. Installation went well, But the home page is not coming up. I can connect using sqlplus but not with Sql Developer. I checked tnsnames.ora and listener.ora everything looks fine. Listener is also started. I can always reinstall and see. But I thought better inquire the cause. Regarding the home page. Thi...

Unable to connect to Oracle 10g Express Edition with ODBC

I am using C to write a DLL that provides basic database connection functionality to a couple of different applications, using ODBC. When I use this DLL to connect to an Oracle database (Oracle 10g Express Edition, specifically) I get the following error message: Specified driver could not be loaded due to system error 1114 (Oracle in X...

Creating new database under Oracle XE on Ubuntu

I've just installed Oracle XE in Ubuntu. Is there any way to create new databases, besides the one that comes with the installation, preferably from the command line so that I can do it from a script? It would be nice to have multiple databases started in the same time, if possible. If it is not possible to create new databases, then ma...

Things to watch out for in moving from Oracle Express to the Real Deal?

I'm writing an application which needs to work on an Oracle DB, we don't have an Oracle Db but our client does, so I've been developing/testing it using Oracle Express. Are there anythings I should watch out for in moving from the free version that might break my app when I run it against the Full fat edition? ...

subsonic.migrations and Oracle XE

Hello, Probably I'm doing something wrong but here it goes: I'm trying to create a database using subsonic.migrations in an OracleXE version 10.2.0.1.0. I have ODP v 10.2.0.2.20 installed. This is my app.config: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <section name="SubSonicService" type="SubSon...

How many connections can Oracle Express handle?

I'm building a web application that uses Oracle Database 10g as the database backend. I realize the Express edition has limitations, but I just wanted to make sure that number of connections wasn't one of them. Does Oracle Express limit the amount of concurrent connections (for example, the number of users viewing the site)? ...

Importing a dmp file created by DataPump into Oracle Express 10g

How do i go about importing a .dmp file created by DataPump into Oracle Express 10g ...

[Reloaded] Error while sorting filtered data from a GridView

Hello guys, I have an error I cannot solve, on a ASP.NET website. One of its pages - Countries.aspx, has the following controls: a CheckBox called "CheckBoxNAME": } Also, this is the main onload event of the page: protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) ...

Requirements for connecting to Oracle with JDBC?

I'm a newbie to Java-related web development, and I can't seem to get a simple program with JDBC working. I'm using off-the-shelf Oracle 10g XE and the Eclipse EE IDE. From the books and web pages I've checked so far, I've narrowed the problem down to either an incorrectly written database URL or a missing JAR file. I'm getting the fo...

Very frustrating ORA-12154 excpetion finally resolved!

This is a little something I thought I need to share. We had some issues establishing connection to Oracle. We kept getting the ORA-12154 (TNS:could not resolve the connect identifier specified) without any apparent reason. The weirdest thing was that in some application the connection was successfully established, while it kept throwin...

Oracle 10g express home page is not coming up

Hello All: My Oracle 10g Express Edition , I can login in the SQL plus but I cannot login into oracle via SQL developer and cannot view the Home page at link http://127.0.0.1:8080/apex. This was working fine until yesterday. I have checked via (WINDOWS)netstat -ab and no other app is using the 8080 port. The only thing I did today was...

Oracle 10g EX / NCLOB - seems NLS_NCHAR_CHARACTERSET is ignored?

I am running Oracle Database 10g Express Edition Release 10.2.0.1.0 in a dev environment with the following NLS settings: NLS_CHARACTERSET WE8MSWIN1252 NLS_NCHAR_CHARACTERSET AL16UTF16 Used clients are either PHP with oci8 extension or the Oracle SQL Developer, using both ended up in this behaviour which I don't understand: I had rece...

Oracle: How to call a stored func with Toad

Hi guys: I have created a stroed func as follows: CREATE OR REPLACE FUNCTION HR.worldCount(str IN VARCHAR2) RETURN PLS_INTEGER AS BEGIN Return 1; END; / But an error occurs when I execute it: Begin DBMS_OUTPUT.PUT_LINE ('there are ' || HR.wordCount('abc')); End; Error is as follows: Error at line 1 ORA-06550: line...