Need help to deploy oracle database in server [message #638291] |
Tue, 09 June 2015 02:43 |
|
Ambee
Messages: 1 Registered: June 2015
|
Junior Member |
|
|
Hello, i am develop a web which is connected to an oracle 12c database(installed in my local windows laptop). It uses the database to recover user data once logged in. Am planning to deploy the website in provider servers. I have the following Questions before deploying.
1. If I deploy my database in my host provider, do i need to pay for oracle ?
2. If I have to pay oracle, Is there any other options which makes use of database free ?
3. Also planning to use the same database for Android App which i will develop after few days. Please suggest If i can able to make use of the database which is in provider.
Thanks in advance.
[Edit MC: remove provider name]
[Updated on: Tue, 09 June 2015 03:29] by Moderator Report message to a moderator
|
|
|
|
Re: Need help to deploy oracle database in server [message #638295 is a reply to message #638291] |
Tue, 09 June 2015 04:59 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
The only free version is XE, and that is not available in release 12,x, only (I think) 11.2.0.1.
You can't licence just one virtual machine, you have to licence the entire physical machine. Unless you are Amzon, who have struck a deal wih Larry that lets you licence individual VMs. Search for Oracle Amazon RDS, that is probably your only legal option.
|
|
|
Re: Need help to deploy oracle database in server [message #638298 is a reply to message #638295] |
Tue, 09 June 2015 05:14 |
gazzag
Messages: 1119 Registered: November 2010 Location: Bedwas, UK
|
Senior Member |
|
|
Quote:only (I think) 11.2.0.1.
C:\>sqlplus system
SQL*Plus: Release 11.2.0.2.0 Production on Tue Jun 9 11:12:13 2015
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production
SQL> select name from v$database;
NAME
---------
XE
|
|
|