Database Management
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesDatabase Management

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 27th, 2003, 01:23 PM
Hero Doug Hero Doug is offline
Self Proclaimed
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 249 Hero Doug User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 56 sec
Reputation Power: 5
Need something better then MySQL, and cheaper then Oracle.

I was just wondering what would be a good database to use for very large storage applications.

Currently I'm using MySQL which I hear can be fast with millions of records provided you build a good index.

I was also looking at Oracle. I downloaded their price list and it said their standard database was around $400, I then went to their store and saw it said the same database is listed around $20 000, with additional $391 per person using it, with a 5 person minimum. (So naturally I don't think I want to use Oracle)

I was wondering if anyone could suggest a good database that would be able to handle a lot of records, and possibly using a grid, (Networking computers together to act as one) but is a bit more reasonably priced then $20k.

I'll be using multiple tables which will hold records based on their content, (Categories) and each table will have 6 rows, of which one will be searched, and 3 others will just be displayed if the row is used.

Reply With Quote
  #2  
Old December 27th, 2003, 02:29 PM
r937's Avatar
r937 r937 is offline
SQL Consultant
Click here for more information.
 
Join Date: Feb 2003
Location: Toronto Canada
Posts: 17,958 r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level)r937 User rank is General 1st Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 4 Weeks 16 h 8 m 46 sec
Reputation Power: 1024
each table will have 6 rows? you want microsoft access

you probably meant 6 columns

if you're only indexing one column, why not mysql?

take a look at postgresql too

rudy

Reply With Quote
  #3  
Old December 27th, 2003, 03:33 PM
Hero Doug Hero Doug is offline
Self Proclaimed
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 249 Hero Doug User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 56 sec
Reputation Power: 5
oops, sorry about that. It is 6 columns.

Reply With Quote
  #4  
Old December 28th, 2003, 03:26 AM
shammat shammat is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Oct 2003
Location: Munich, Bavaria
Posts: 1,007 shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level)shammat User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 3 Days 13 h 56 m 40 sec
Reputation Power: 67
I don't know which OS your server will be running, if it is Linux (or some *nix based OS) you should have a close a look at Postgres.
Firebird is very good as well, and it has a good Windows implementation as well. So if you need to run on Windows, it's worth looking at as well. Use 1.5RC7 (don't be taken back by the "Release Candidate" label, it is most likely going to be the final release)
Both of them are very reliable and proven to handle large databases.
None of them has grid computing though.

Reply With Quote
  #5  
Old December 28th, 2003, 03:28 AM
pabloj's Avatar
pabloj pabloj is offline
Modding: Oracle MsSQL Firebird
Dev Shed God 6th Plane (7500 - 7999 posts)
 
Join Date: Jun 2001
Location: Outside US
Posts: 7,917 pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 2 Months 3 Weeks 3 Days 15 h 7 m 10 sec
Reputation Power: 279
Quote:
and possibly using a grid, (Networking computers together to act as one)

I think that the best clustering among opensource databases is of MySQL.
The other two great open databases are PostgreSQL and Firebird.
On the commercial side, why not look at DB2, Sybase or MSSQL, they should all be priced more reasonably than Oracle.

Last edited by pabloj : December 28th, 2003 at 03:32 AM.

Reply With Quote
  #6  
Old December 28th, 2003, 10:39 AM
Hero Doug Hero Doug is offline
Self Proclaimed
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 249 Hero Doug User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 56 sec
Reputation Power: 5
I'm not too concerned about which OS I'm using, I can switch if one proves to be better then the other.

You're giving me something to go on. It's sounding like MySQL seems to be one of the best open source because of its clustering abilities.

Reply With Quote
  #7  
Old December 28th, 2003, 05:23 PM
pabloj's Avatar
pabloj pabloj is offline
Modding: Oracle MsSQL Firebird
Dev Shed God 6th Plane (7500 - 7999 posts)
 
Join Date: Jun 2001
Location: Outside US
Posts: 7,917 pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 2 Months 3 Weeks 3 Days 15 h 7 m 10 sec
Reputation Power: 279
If you can choose your OS then go for Linux, it's as stable as other unices (more than win anyway) and is the OS of choice for Oracle and IBM, the two big ones.
Note that MySQL has some little problems on windows, like not being able to kill connections ... probably Firebird is the most stable on Windows.

Reply With Quote
  #8  
Old December 28th, 2003, 06:09 PM
Hero Doug Hero Doug is offline
Self Proclaimed
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 249 Hero Doug User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 56 sec
Reputation Power: 5
I think I'll try to stay away from windows; they just don't seem to be able to offer anything decent for a good price.

I've been reading up on MySQL and it seems like a smart choice. Low start up cost, low maintenance, very reliable, very fast, and it can handle large amounts of data.

http://www.mysql.com/press/user_sto...unications.html

Reply With Quote
  #9  
Old December 30th, 2003, 08:04 PM
vanekl vanekl is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 229 vanekl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
MySQL does not have clustering, as the
word is typically defined. The closest thing
MySQL has to clustering is replication, which
is not the same thing. MySQL does not
have the capabilities to handle super-large
databases. Their own documentation says
as much.

Reply With Quote
  #10  
Old December 30th, 2003, 10:14 PM
Hero Doug Hero Doug is offline
Self Proclaimed
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 249 Hero Doug User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 56 sec
Reputation Power: 5
According to the link I posted one company is already using it with 27 different servers and has their database closining on 600 gigs.

Maybe this is with some modification, or maybe I'm misinterpreting the statement.

Reply With Quote
  #11  
Old December 31st, 2003, 06:50 AM
vanekl vanekl is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 229 vanekl User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
And nowhere in that link did it say MySQL
does clustering. It did, however, say they
were using replication, as I noted above.

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesDatabase Management > Need something better then MySQL, and cheaper then Oracle.


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |