- What are the patterns you use to determine the frequent queries?
- How do you select the optimization factors?
- What are the types of changes one can make?
|
1
|
|
|||
|
|
|
This is a nice question, if rather broad (and none the worse for that). The first question to ask is: "is there a performance problem?" On the other hand... Determine Frequent QueriesLogging will get you your frequent queries. Select the optimization factors?(I may be misunderstanding this part of the question)
You're looking for any patterns in the queries / response times. Types of changes one can make?You're specifically asking about optimising tables.
You might also like my post on this. |
||
|
|
|
|
Your question is a bit vague. Which DB platform? If we are talking about SQL Server:
|
|||
|
|
|
|
That's difficult to answer without knowing which system you're talking about. In Oracle, for example, the Enterprise Manager lets you see which queries took up the most time, lets you compare different execution profiles, and lets you analyze queries over a block of time so that you don't add an index that's going to help one query at the expense of every other one you run. |
||
|
|
|
|
The rest is based on what kind of data you have and how it is setup. |
||
|
|
|
|
In SQL server you can use trace to find out how your query is performing. Use ctrl + k or l For example if u see full table scan happening in a table with large number of records then it probably is not a good query. A more specific question will definitely fetch you better answers. |
||
|
|
|
|
If your table is predominantly read, place a clustered index on the table. |
||
|
|
|
|
My experience is with mainly DB2 and a smattering of Oracle in the early days. If your DBMS is any good, it will have the ability to collect stats on specific queries and explain the plan it used for extracting the data. For example, if you have a table (x) with two columns (date and diskusage) and only have an index on date, the query:
will be very efficient since it can use the index. On the other hand, the query
would not be so efficient. In the former case, the "explain plan" would tell you that it could use the index. In the latter, it would have said that it had to do a table scan to get the rows (that's basically looking at every row to see if it matches). Really intelligent DBMS' may also explain what you should do to improve the performance (add an index on diskusage in this case). As to how to see what queries are being run, you can either collect that from the DBMS (if it allows it) or force everyone to do their queries through stored procedures so that the DBA control what the queries are - that's their job, keeping the DB running efficiently. |
||
|
|
|
|
indices on PKs and FKs and one thing that always helps PARTITIONING... |
||
|
|
|
|
1. What are the patterns you use to determine the frequent queries? Depends on what level you are dealing with the database. If you're a DBA or a have access to the tools, db's like Oracle allow you to run jobs and generate stats/reports over a specified period of time. If you're a developer writing an application against a db, you can just do performance profiling within your app. 2. How do you select the optimization factors? I try and get a general feel for how the table is being used and the data it contains. I go about with the following questions. Is it going to be updated a ton and on what fields do updates occur? Does it have columns with low cardinality? Is it worth indexing? (tables that are very small can be slowed down if accessed by an index) How much maintenance/headache is it worth to have it run faster? Ratio of updates/inserts vs queries? etc. 3. What are the types of changes one can make? -- If using Oracle, keep statistics up to date! =) -- Normalization/De-Normalization either one can improve performance depending on the usage of the table. I almost always normalize and then only if I can in no other practical way make the query faster will de-normalize. A nice way to denormalize for queries and when your situation allows it is to keep the real tables normalized and create a denormalized "table" with a materialized view. -- Index judiciously. Too many can be bad on many levels. BitMap indexes are great in Oracle as long as you're not updating the column frequently and that column has a low cardinality. -- Using Index organized tables. -- Partitioned and sub-partitioned tables and indexes -- Use stored procedures to reduce round trips by applications, increase security, and enable query optimization without affecting users. -- Pin tables in memory if appropriate (accessed a lot and fairly small) -- Device partitioning between index and table database files. ..... the list goes on. =) Hope this is helpful for you. |
|||
|
|
