0 pts.
 Oracle – What does it do???
Ok, Needing a little help, I need to know what oracle is/does/how ir fits in to every/other things and why? if anyone could give me a brief description that would be great. Thanks.

Software/Hardware used:
ASKED: March 27, 2006  6:50 PM
UPDATED: April 10, 2006  12:59 AM

Answer Wiki:
Oracle is a company which makes the Oracle product line. Chief in this product line is the Oracle Data Base Management System, or DBMS. They also have products written for their DBMS called Oracle Applications. A DMBS is a program which keeps data as records in tables. You can create tables, add records, delete them, and search for records. The thing that makes DBMSes special is that they use a query language, called SQL. SQL allows the programmer to extract data from one or more tables at the same time, making correlations. You can do this from the command line, or from within other programs. Other DBMSes (Oracle's competitors) include IBM's DB2, Microsoft's SQL Server, and the freebies PostgreSQL and MySQL. Example SQL: Find number of men and women with drivers' licenences, assuming that's what's in your data base: SELECT gender, COUNT(*) FROM driversLicence GROUP BY gender --- Sheldon Linker (sol@linker.com) Linker Systems, Inc (www.linkersystems.com) 800-315-1174 (+1-949-552-1904)
Last Wiki Answer Submitted:  March 28, 2006  1:59 am  by  SheldonLinker   15 pts.
All Answer Wiki Contributors:  SheldonLinker   15 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

That’s definitely an “open question”!

Besides the DBMS, Oracle has several other products. Among them it is very important “Applications” with several modules (including what used to be “Financials”).

Just check their website for more info: http://www.oracle.com

Cheers,

 275 pts.