Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
thanks , I’ve really learned a lot through this lesson But I have a question. Is this the way she used in databases Facebook ?
goldenFingers404: Thanks for the feedback. I’m not exactly sure what you are asking. If you are asking about how Facebook uses MySQL, this article can hopefully shed some light on that:
http://www.prodromus.com/2011/01/27/what-database-does-facebook-use
Hello
I am new in MYSQL, Before i used mssql
We have a big database around 500000 records in mssql and then miggrate it in mysql.
Now we have mysql table in MyISAM format with 5 lack records
I tried to convert table in innodb but i found my table size become double and also database slow.
Now i have some questions
What you suggest for me? Innodb or MyISAM. if innodb then when i convert format to innodb then why my table size become double and slow too.
I have 56 fields columns. i create index on 3 most imp fields which we used regular. so what you suggest for indexing
Also give me some good tips how i can optimzie my big table
If we migrate in innodb then should i need to recreate my index on column too or it will migrate automaticly?
I am not sure that I agree with your suggestion on the UNION operator being faster than the OR in your SQL queries.
“This operation may be faster if we perform the search for first names in one query, perform the search for matching last names in another, and then combine the output. We can do this with the union operator:”
Assuming there is no index, I think that the OR would scan the table once and take rows that match either of the two values and in the UNION case it would scan the table twice, so the queries would be twice as slow. If there is an index, then it would just scan the index instead of the table but I think the UNION would be slower regardless.
Thank you for the helpful post. It helped me to optimize WordPress Database easily.
You can also optimize queries and tables in MySQL and MariaDB with in-build mysql query plofiler in dbForge Studio for MySQL.