Autoscaling Azure SQL Database

后端 未结 4 583
说谎
说谎 2020-12-24 05:45

We have an application that uses Azure SQL for the database backend. Under normal load/conditions this database can successfully run on a Premium 1 plan. However, during the

4条回答
  •  臣服心动
    2020-12-24 06:04

    In some cases the easiest option might be to just run SQL query as described in msdn.

    For example:

    ALTER DATABASE [database_name] MODIFY (EDITION = 'standard', SERVICE_OBJECTIVE = 'S3', MAXSIZE = 250 GB)
    

提交回复
热议问题