Oracle "lite" Alternative? - In need of a program

free web hosting
Free Web Hosting > Computers & Tech > Databases

Oracle "lite" Alternative? - In need of a program

HiddenKenshin
for college, we run oracle on a win2k3 server that's run on a virtual system like VMware and/or Virtual PC. VMware has it bells and whistles, and makes a nifty gadget, but eats my laptop's resources like there's no tomorrow. So I got rid of the VMware image and VMware itself, and wanted to switch to VPC.
Another problem I have, is that I barely have any diskspace left to work with, and those images are at least 4 GB.

So I wondered if anyone knew a program that would act as Oracle, but solely for the purpose of testing databases. I have two .db files that I need to use and so far, the only programs I've come across that would "test" a database required a server of some sorts and only worked with .sql query files.

A trial's ok, but if possible, freeware would be awesome ^^

Thanks in advance!

Reply

yordan
For testing purposes, you could imagine installing Oracle 9i on your workstation.
Go to http://www.oracle.com/technology//index.html , sign for a free Oracle registration. You will probably have to explain that you want to learn how to install and use Oracle.
It's free for learning purposes.
A standard Oracle can be installed on any standalone Windows workstation, it can be installed on your laptop if you have enough memory.
However, remember that you can use it for learning, you cannot use a free licence for making money with an application !
Regards
Yordan

Reply

vhortex
QUOTE(HiddenKenshin @ Apr 23 2007, 03:00 PM) *
So I wondered if anyone knew a program that would act as Oracle, but solely for the purpose of testing databases.

Thanks in advance!


Use Oracle 10G express, It is a more compact version and will need only memory. On my installation it eats up 600MB of my 1 gig memory. I set it up that way.

By the way, when you turn on error logging as i use to, it can eat a lot of disk space since error logs can sometimes reach up to 300mb a piece.. mostly the file size is 1mb.

Reply

HiddenKenshin
QUOTE(vhortex @ Apr 24 2007, 02:37 PM) *
Use Oracle 10G express, It is a more compact version and will need only memory. On my installation it eats up 600MB of my 1 gig memory. I set it up that way.

By the way, when you turn on error logging as i use to, it can eat a lot of disk space since error logs can sometimes reach up to 300mb a piece.. mostly the file size is 1mb.

*eep*
Thank you both for your kind replies, I appreciate it very much!
My textbook comes with a "demo version" of 10g, I believe. I didn't bother checking it, since I though it required the user to set it up as a server or whatnot. I turned to Virtual PC, however, and I got my hands on an image from college with windows server 2k3 and an install for Oracle already on it. It runs like a dream.
Much faster, stable and less resource-demanding than VMware. The entire setup needed about 5 gigs of space.

I was surprised that there weren't any Oracle-based programs that could let someone test sql on databses, though.

Thanks again for the swift responses!

 

 

 


Reply

eminus
Oracle 10g Express is a free version that is so cool because it is like its big brother the Oracle 10g Enterprise edition most of their features are the same except that Oracle 10g Express was strip out of those enterprise stuffs like Clustering,Geometry (for GIS use) ,etc but the cool thing is that it has its RMAN.TKPROF,etc such thing that you really need if you would just setup a single database not a clustered one

Reply

vhortex
QUOTE(HiddenKenshin @ Apr 25 2007, 01:42 AM) *
I was surprised that there weren't any Oracle-based programs that could let someone test sql on databses, though.

Thanks again for the swift responses!


What do you mean? A program to connect only to Oracle and perform queries, is that correct?

*******

If so, please check out TOAD http://www.toadsoft.com/
The site is where to download Toad for Oracle and test the database using direct queries.

You can also use the command interface PL/SQL of Oracle or a much better one is a third party
program called PL/SQL Developer http://www.allroundautomations.com/plsqldev.html

I hope I get it correct..

*******

I mostly use Oracle for desktop programming needs and mySQL for online stuffs.

Have successfully developed an ERP system which uses Oracle as backend database when
using the software online and switch to mySQL 5 for online needs which is a minimal copy
of the much complete LAN version.

*******

What I want to achieve now is a DBAless setup with Oracle. I am not a DBA and only
got my SKILLS with databases learning on my own and part of it by contributing to mySQL
open source.


CIAO~

Reply

yordan
QUOTE
What do you mean? A program to connect only to Oracle and perform queries, is that correct?

I think he mant "how could I perform queries concerning tables in an Oracle datafile (like /data/users01.dbf) without having Oracle installed on my own system ?"
I guess that an oracle RDBMS instance is the only one able to read inside an Oracle database file. Moreover, I'm pretty sure that the database file has to be created on the same system, I mean, a PC with Oracle cannot read directly from an Oracle database created on an AIX or a SUN machine. I already tried things like that in order to recover from system failures, you must have an Oracle installation in order to read datafiles from an Oracle database.
Moreover, you must have all the datafiles (tables, indexes, redo logs, controlfiles etc...)
Regards
Yordan

Reply

vhortex
QUOTE(yordan @ Apr 26 2007, 12:04 AM) *
I think he mant "how could I perform queries concerning tables in an Oracle datafile (like /data/users01.dbf) without having Oracle installed on my own system ?"
I guess that an oracle RDBMS instance is the only one able to read inside an Oracle database file. Moreover, I'm pretty sure that the database file has to be created on the same system, I mean, a PC with Oracle cannot read directly from an Oracle database created on an AIX or a SUN machine. I already tried things like that in order to recover from system failures, you must have an Oracle installation in order to read datafiles from an Oracle database.
Moreover, you must have all the datafiles (tables, indexes, redo logs, controlfiles etc...)
Regards
Yordan


It is the encryption that i hate about oracle.
It prevents me to traverse backwards to rebuild the broken data without having a copy of oracle.

Ayway, it is the same encryption that i love with oracle.

**********

On the otherside, there are programs available that can extract data from users01.dbf [oracle data file], i dont know how usefull it will be since you still need to patch togeher the table files and table definations plus the other settings and stuff when you extract those data.

Such programs that can do that are rare [in my opinion only], they view the oracle data file the same way Oracle views it. An independent disc with its own file system. laugh.gif


Reply

HiddenKenshin
QUOTE(vhortex @ Apr 25 2007, 06:37 PM) *
It is the encryption that i hate about oracle.
It prevents me to traverse backwards to rebuild the broken data without having a copy of oracle.

Ayway, it is the same encryption that i love with oracle.

**********

On the otherside, there are programs available that can extract data from users01.dbf [oracle data file], i dont know how usefull it will be since you still need to patch togeher the table files and table definations plus the other settings and stuff when you extract those data.

Such programs that can do that are rare [in my opinion only], they view the oracle data file the same way Oracle views it. An independent disc with its own file system. laugh.gif

Thanks again for the replies, I really appreciate it.
For now, all I really need to do is indeed grab a database, and run queries on it. That's about it. I think it's kind of a introductory class in preperation for next year's PHP course. This is just a few weeks of class, anyway.

I wasn't aware that the whole deal with oracle based databases are so platform sensitive. I can understand now why they instructed us to run it on a specific virtual machine client.

Reply

yordan
QUOTE
For now, all I really need to do is indeed grab a database, and run queries on it. That's about it.

If you just need a database for running queries on it, you could simply use your Astahost account and create a mysql database. You can simply create the database, and use phpmyadmin in order to query the tables, or you can create your own sql scripts and ask phpmyadmin to execute your scripts.
If it's for your school and if you need to type purely (and barely) sql commands, then you can ask for a ssh account at astahost, then you should be able to access your account in command line mode, without hte php environment if it's not to be use because in the next year's program.
Regards
Yordan

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : oracle, lite, alternative, program

  1. Installing Mysql?
    Im tring to install MySQL to my game made from MCcodes lite. (17)
  2. Oracle Vs. Mysql Vs. Postgresql
    POLL!! Choses you preferred db s/w! (9)
    Hey Everyone!, Please choose your preferred database s/w! Regards, Avell....
  3. Public Access Oracle Db?
    (5)
    This may be the stupidest question ever, I don't know, but frankly if this exists it would help
    me out a lot haha. What I'm looking for is an oracle database set up somewhere that has an open
    uname/password for the public to use for testing or anything really. I'm just developing
    something that needs to connect to our oracle db here but we don't want the computers to be
    required to have the oracle client installed. Currently though all the computers I have access to
    here DO have it installed and need it to stay for the time being, and I can't access o....
  4. How Many Concurrent Users For Oracle Database?
    This is to analyse and get perfect result for How many concurrent use (1)
    Hi friends, How many concurrent users can practically access the oracle database?
    they say tht the figure is hundreds of thousands users...is there any exact figure? or does the
    number of concurrent users depend on any other factors as wel? I think depend on parameter
    1.session 2.processes session Specific connection of a user to an Oracle instance through a user
    process. A session lasts from the time the user connects until the time the user disconnects or
    exits the database application. Multiple sessions can be created and exist concurrently for ....
  5. Oracle 10g - Dba Less?
    Oracle's Drive for their new RDBMS (9)
    Today Oracle is pushing the idea that if you have an Oracle 10g running in your company then you
    could survice without a DBA in your payroll Now I want your opinion on this thing....
  6. Need Info On Database Programming Courses
    Oracle Database Programming (2)
    I know Database Programming on MS-ACCESS, now i am planning to go for some other Database
    Programming courses, People told me to go for Oracle or VisualAge. Can anyone told me to start with
    which one and how long is the course period and which one is easy and is it similar to ms access or
    somthig different.....
  7. Oracle 10g Install Issues
    (27)
    So I'm trying to install 10g on my XP Pro development box, and the install goes fine (I do the
    basic install of enterprise edition, I'm by no means an oracle expert) and when it gets to the
    part where it wants to create a database, the database creation assistant fails saying first that it
    cannot retrieve credentials, and then that it can't connect to ORACLE (I'm assuming this is
    the instance name). Anyone have *any* idea what's going on here?....
  8. Help Me With My MS-Access Program
    (2)
    Hi anyone can help me with making a form. These are the case; I am using Ms. Access XP, and a
    database for using as a admission database for new students. And using couple table for the base,
    however I want that when the operator is trying to add a students (add button), a form will came up,
    and asking for his/her ID and password and Cliking the LOGIN button and lookup for the ID and
    Password which stored in a "user" table on the database. When the ID and Password 're correct
    the function for adding students can be processed, but when the ID and Password uncorrect....
  9. What Are Your Opinions / Views About Oracle ?
    (9)
    What can you say about Oracle. I never used it so i want to hear from experts what is Oracle like
    :-) Topic title edited to suit the nature of content better. In future try to make your topic
    title more descriptive. ....
  10. Database Program With GUI
    (14)
    I am looking for a program to create SQL databases through a GUI to simplify it, the only things i
    can seem to find are command prompt things and i can't work with them. I like MS access and
    would like something similar to that if possible. I am working with windows at the moment can anyone
    recommend a program i can use (preferably free) Many thanks....
  11. Strange Oracle Behavior
    Oracle problem (5)
    Hi ! I have a strange error with Oracle 10g R2. I run it on a Solaris 10 computer (Ultra 60
    450MHz 1024 MB RAM). When I start all the services as usual as the user oracle I do like this:
    Database startup: sqlplus /nolog SQL> connect / as sysdba SQL> startup SQL> exit Listener startup:
    lsnrctl start iSQL*Plus startup: isqlplusctl start Then there is a strange behavior of the
    iSQL*Plus service, when I close the shell window that is started the services from the iSQL*Plus
    servers shutdown. I assume it does since I can no longer reach it. But the other serices con....
  12. What's Oracle?
    ....clueless.... (5)
    Ok. So I signed up for this college course called "Oracle." All they told me was the that course is
    supposed to teach me professional internet databasing. Am I right? And what exactly IS "Oracle"?
    What am I gonna learn? /unsure.gif' border='0' style='vertical-align:middle' alt='unsure.gif' />
    /blink.gif' border='0' style='vertical-align:middle' alt='blink.gif' /> Thanks for your
    help! ....
  13. How To Program A Counter?
    counter for clicks on picture (7)
    hi @ all! i have a website with many partypics.. and now i want to have a counter! if
    anybody clicks on a pic, the counter which is placed under everypic should notice this! so for
    every pic i want a counter, which shows how often it was clicked and shown! with which
    scrpting language should i make it? which is the best for this quest? thx for help! greetz
    darul0r....

    1. Looking for oracle, lite, alternative, program

Searching Video's for oracle, lite, alternative, program
advertisement




Oracle "lite" Alternative? - In need of a program



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE