Which are the SQL improvements you are waiting for?

后端 未结 30 1254
感情败类
感情败类 2021-02-01 22:29

Dealing with SQL shows us some limitations and gives us an opportunity to imagine what could be.

Which improvements to SQL are you waiting for? Which would you put on t

30条回答
  •  醉话见心
    2021-02-01 23:08

    My wish list (for SQLServer)

    1. Ability to store/use multiple execution plans for a stored procedure concurrently and have the system automatically understand the best stored plan to use at each execution.

    Currently theres one plan - if it is no longer optimal its used anyway or a brand new one is computed in its place.

    1. Native UTF-8 storage

    2. Database mirroring with more than one standby server and the ability to use a recovery model approaching 'simple' provided of course all servers are up and the transaction commits everywhere.

    3. PCRE in replace functions

    4. Some clever way of reusing fragments of large sql queries, stored match conditions, select conditions...etc. Similiar to functions but actually implemented more like preprocessor macros.

提交回复
热议问题