zoukankan      html  css  js  c++  java
  • SQL Server 2017 Developer and Express

    SQL Server 2017 有两个免费版本

    • Developer 版
    • Express 版

    但是,微软官方 SQL Server 下载页面,关于两个版本的介绍比较笼统,很难看出具体哪个更适合我目前的开发测试需求。

    https://www.microsoft.com/en-us/sql-server/sql-server-downloads

    Developer 版的介绍

    SQL Server 2017 Developer is a full-featured free edition, licensed for use as a development and test database in a non-production environment.

    Developer 版是免费的,并且包含了 SQL Server 的完整功能。但是只能用于开发和测试,而不可以用于生产环境。

    Express 版的介绍

    SQL Server 2017 Express is a free edition of SQL Server, ideal for development and production for desktop, web, and small server applications.

    Express 版也是免费的,而且可以用于生产环境。但是只能用于小规模的使用场景,例如桌面应用,网站,和小的服务端应用。

    Developer 版与 Express 版的具体区别

    从官方的这个链接里能看到详细的区别

    https://www.microsoft.com/en-us/sql-server/sql-server-2017-editions

    可以看到 Developer 版跟企业版在功能上几乎一致,没有任何的硬件限制。只是 Developer 版不能用于生产环境。

    而 Express 版可以用于生产环境,但是在硬件上是有明确限制的,例如

    • 最多只能支持 CPU 四核
    • 内存有限制
    • 数据库文件大小也有限制
    • 等等

    转自:https://www.sunzhongwei.com/diff-between-the-sql-server-2017-developer-version-and-express-edition

  • 相关阅读:
    关于 0xCCCCCCCC
    extern "C" 和 DEF 文件.
    Visual Studio 编译纯 C 项目的方法
    Virtual Box 增加虚拟硬盘容量
    Java三种代理模式:静态代理、动态代理和cglib代理
    java集合框架综述
    JsonAutoDetect注解找不到错误
    SpringBoot整合Redis
    Spring重要注解@ControllerAdvice
    SpringBoot整合+logback日志配置
  • 原文地址:https://www.cnblogs.com/YourDirection/p/14301313.html
Copyright © 2011-2022 走看看