What is maximum size of a database in MySQL?
Answer Posted / krish
hahah 1 kb ;)
before you work with databases you should know one thing. Database addresses are loaded on to the primary memory. So guess what 32bit OS can only handle max 4gb ram which means only 4gb can be addressed. This results 32bit database can have max size of < 4GB.
If you have a 64bit Database you will be able to address 2^64 bytes. (currently available 256 TB)
krish
source: experience
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do I exit mysql?
How to include comments in sql statements?
What is row?
Is oracle mysql free?
What is the use of mysql_fetch_array () function in php?
Why we use mysql workbench?
How To see all the tables from a database of mysql server.
How to convert character strings to numeric values?
Write a query to display even rows in student table using mysql?
How to display nth highest salary from a table in a mysql query?
How large can a mysql table be?
Consider you have a composite index of three columns. Now, you have to provide the value of two columns in the where clause of a select query. Do you think index can be used for the operation?
How do I change the max connection in mysql?
Who owns mysql database?
What is the difference between having and where clause in mysql? Explain