• Getting ready for SQL Database


    1.Database Growth

      Size growth in 3,6,12,24,60 months

      Database integrity check

      Indexes -Rebuild,ReOrganize,Update Statistics

    2.User Assignment and Permissions

      db_datareader,db_datawriter,db_owner

       App/web users, Admin users

       developer persional ID to access DB

    3. Physical Data File allocation

        Optimization for speed?

       File group and disk drive allocation

       Table partitioning

     4.Overcokked query

    Database table partitioning in SQL Server

    Create Partitioned Tables and Indexes

     

    SQL Server and implicit conversion of types

    This is the list you are after DataType Precedence

    In your examples:

    WHERE quantity > '3'

    '3' is cast to int, matching quantity

    WHERE quantityTest > 3

    No casting required

    WHERE date = 20120101

    20120101 as a number is being cast to a date, which is too large. e.g.

    select cast(20120101 as datetime)

    This is different from

    WHERE date = '20120101'

    Where the date as a string can be cast.

    If you go down a third of the CAST and CONVERT reference to the section Implicit Conversions, there is a table of implicit conversions that are allowed. Just because it is allowed doesn't mean it will work, such as (20120101 -> datetime).

     SQL Wildcard Search - Efficiency?

    Having the wildcard at the end of the string, like 'abc%', would help if that column were indexed, as it would be able to seek directly to the records which start with 'abc' and ignore everything else. Having the wild card at the beginning means it has to look at every row, regardless of indexing.

    Good article here with more explanation.

    SQL Performance UNION vs OR

    Either the article you read used a bad example, or you misinterpreted their point.

    select username from users where company = 'bbc' or company = 'itv';

    This is equivalent to:

    select username from users where company IN ('bbc', 'itv');

    MySQL can use an index on company for this query just fine. There's no need to do any UNION.

    The more tricky case is where you have an OR condition that involves two different columns.

    select username from users where company = 'bbc' or city = 'London';

    Suppose there's an index on company and a separate index on city. Given that MySQL usually uses only one index per table in a given query, which index should it use? If it uses the index on company, it would still have to do a table-scan to find rows where city is London. If it uses the index on city, it would have to do a table-scan for rows where company is bbc.

    The UNION solution is for this type of case.

    select username from users where company = 'bbc' 
    union
    select username from users where city = 'London';

    Now each sub-query can use the index for its search, and the results of the subquery are combined by the UNION.


    An anonymous user proposed an edit to my answer above, but a moderator rejected the edit. It should have been a comment, not an edit. The claim of the proposed edit was that UNION has to sort the result set to eliminate duplicate rows. This makes the query run slower, and the index optimization is therefore a wash.

    My response is that that the indexes help to reduce the result set to a small number of rows before the UNION happens. UNION does in fact eliminate duplicates, but to do that it only has to sort the small result set. There might be cases where the WHERE clauses match a significant portion of the table, and sorting during UNION is as expensive as simply doing the table-scan. But it's more common for the result set to be reduced by the indexed searches, so the sorting is much less costly than the table-scan.

    The difference depends on the data in the table, and the terms being searched. The only way to determine the best solution for a given query is to try both methods in the MySQL query profiler and compare their performance.

    All purpose query

    select *

    from table

    where column is null or column='value'

     

     

  • 相关阅读:
    微信小程序wx.request请求用POST后台得不到传递数据
    小程序的movable-view怎么持续移动
    当inline-block或者float失效的时候怎么弄
    js中如何删除json对象的某一个选项
    情非得已
    框架变量的问题
    隐式等待写法__和显示等待对比问题___及误区
    显式等待大结局___封装成API方便控制层调用
    显式等待第二集____灵活写法__
    显式等待__第一集___追加了误区
  • 原文地址:https://www.cnblogs.com/chucklu/p/13323653.html
Copyright © 2020-2023  润新知