What does means data tuning? It is all about database performance. How you write your code for database, it is depend on. There is lots of trick to improve your performance. How you design your database that is also matters performance . How to Improve performance of SQL? Some Of Points To Be Taken Care While Design or Develop SQL Database. Avoid number-to-character conversions because numbers and characters compare differently and lead to performance downgrade. While using SELECT statement, only fetch whatever information is required and avoid using * in your SELECT queries because it would load the system unnecessarily. Create your indexes carefully on all the tables where you have frequent search operations. Avoid index on the tables where you have less number of search operations and more number of insert and update operations. A full-table scan occurs when the columns in the WHERE clause do not have an index associated with them. You can avoid a ...