How to choose your database

ganjasensation0098

New Member
Messages
36
Reaction score
0
Points
0
Hi guys, right now I'm thinking what database I will use in terms of daily transactions. I read already many articles about this but my head is still not clear about this topic. I just want to learn momre on what database is good and when it will be good to use.
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
Are you asking about which RDBMS (e.g. MySQL, PostgreSQL, SQL Server, Oracle) to use? What are your requirements?
 
Last edited:

wilron818

New Member
Messages
13
Reaction score
0
Points
0
MYSQL, MSSQL and oracle are the best db. You can choose either of the three...
 
Last edited:

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
@wilron: "Best" depends entirely on the requirements. You've left out PostgreSQL.
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
callumacrae's just being a smart arse.
 
Last edited:

bidzey75

New Member
Messages
53
Reaction score
0
Points
0
unless your doing something that demands a specific task use the one your most comfortable with. You will create less bugs and less errors. All the one listed here I suspect are all capable of handle the most common everyday tasks.

I've been working with oracle for 8 years now and it's super duper powerful, there's functions for that database that makes my head spin, or at least what my boss shown me what you can do with them. But for code reduction and efficiency I like working with MySql, the code is quicker and phpMyAdmin is awesome. I am orienting towards the .Net frame work these days and getting acquainted with MSSQL. I can't say nothing about the others never worked with them.


SQL isn't a database, it's a method of accessing databases ;) The database would be something like MySQL / Firebird / PostgreSQL. ~Callum
he ment MySql, but wrote My Sql...
 
Last edited:

bidzey75

New Member
Messages
53
Reaction score
0
Points
0
maybe he ment "My" in the context like "oh my she is beautiful" or... he thinks he owns the technology? but behond that I can't prove it :)
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
You can't outsmart a smart arse (and I wouldn't have it any other way).
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
I hereby bequeath all my missing likes to you.
 
Last edited:

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
You could, but queries to each would have to be separate. You couldn't, for example, join a table stored under MySQL to a table stored under PostgreSQL.

Do you have a use-case in mind?
 

ganjasensation0098

New Member
Messages
36
Reaction score
0
Points
0
I know that I can't join the tables from MySQL to PostgreSQL. What I'm trying to say is it would be possible to use those RDBMs separately in one application.
 
Top