Results 1 to 4 of 4

Thread: How do you optimize your database

  1. #1
    Join Date
    Jun 2009
    Posts
    96

    How do you optimize your database

    I am running a small web application. My problem is that it takes a lot of time to perform any tasks. This is affecting me a lot in several ways. I want to optimize my database. How should I proceed? What all measures do I need to consider in the process of optimization?

  2. #2
    Join Date
    Feb 2008
    Posts
    1,852

    Re: How do you optimize your database

    There are several points that should be taken care while optimizing the database. First thing is that always use a WHERE clause to narrow the number of rows returned. Avoid using asterisks (*) since because it returns you all column values in a query, instead use the column name which you want. Try use DISTINCT clause in your query. It allows you to return only unique row values by removing all the duplicates.

  3. #3
    Join Date
    Nov 2008
    Posts
    1,054

    Re: How do you optimize your database

    phpMyAdmin is the best tool for you. It is an open source tool written in PHP intended to handle the administration of MySQL over the World Wide Web. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows; executing SQL statements; or managing users and permissions. It can perform analysis, repair and optimization tasks for your database.

  4. #4
    Join Date
    Apr 2008
    Posts
    1,948

    Re: How do you optimize your database

    Keep your tables and queries simple with minimum columns which will finally result in limited calculations. Try to include TOP operator in your query which returns only a certain number or percentage of items in the query. It has been seen that people keep some unnecessary codes that simply does nothing. Always monitor your codes, database and queries and delete anything that is not required. At last put a higher module of RAM in the server to fasten the speed of operations.

Similar Threads

  1. Optimize the connection to the database in mysql
    By Bottlenecked in forum Software Development
    Replies: 8
    Last Post: 09-09-2010, 10:24 PM
  2. Creating Database link in database
    By Lachlann in forum Software Development
    Replies: 3
    Last Post: 28-01-2010, 01:17 PM
  3. Optimize performance on a SQL Database
    By Eber in forum Software Development
    Replies: 4
    Last Post: 05-11-2009, 09:41 PM
  4. convert filemaker pro database to access database
    By Czack in forum MS Office Support
    Replies: 3
    Last Post: 15-04-2007, 01:06 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,440,096.95518 seconds with 17 queries