博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sqlserver 过期
阅读量:7094 次
发布时间:2019-06-28

本文共 1092 字,大约阅读时间需要 3 分钟。

hot3.png

Describe:

If your SQL Server's evaluation is expired, your SQL Server(Instance name) will not start automatic and your SQL Server Management Studio will be invalid .You will see below box:

c02428c07ca65031bd1340aa36147846b4c.jpg

And in the application log you will see below log:

0ff4ddeff26b0492fe526b32aedfa355062.jpg

And another error ID  is 17051

Solution:

In this case, you need to update your SQL Server

 

Step Ⅰ:

Method 1.Run cmd

a. if your edition is 2008,please go to D:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008

Run cmd:

setup.exe /q /ACTION=editionupgrade /InstanceName=MSSQLSERVER /PID=<appropriatePid> /SkipRules= Engine_SqlEngineHealthCheck

b. if your edition is 2012,please go to D:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012

Run cmd:

setup.exe /q /ACTION=editionupgrade /InstanceName=MSSQLSERVER /PID=appropriatePid /IACCEPTSQLSERVERLICENSETERMS

PID is like "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx"

 

Method 2.Run Installation Center:

Or you can Upgrade the SQL Server in the SQL Server Installation Center:

Maintenance--Edition Upgrade

Step :

Restart your Machine

转载于:https://my.oschina.net/qiuSHENv587/blog/3043327

你可能感兴趣的文章
一张表里的多个字段值 取自 字典表里的text 的查询
查看>>
golang tcp socket
查看>>
特么的程序员励志故事(小IT职员在北京5年买了500W的房子)
查看>>
全选和反选 checkbox
查看>>
wget
查看>>
分析Redis架构设计
查看>>
Python获取本机资源使用信息
查看>>
vue实例的生命周期讲解
查看>>
使用linux远程登录另一台linux
查看>>
使用JWT保护你的Spring Boot应用 - Spring Security实战
查看>>
varnish 4.0 官方文档翻译11-Parameters
查看>>
Java多线程(二) -- synchronized
查看>>
springcloud之eureka中实现服务的注册
查看>>
单线程多路复用和多线程加锁的区别(Redis)
查看>>
【Java并发编程】之十六:深入Java内存模型——happen-before规则及其对DCL的分析(含代码)...
查看>>
Kafka写入数据保证不丢失
查看>>
JJWT的token生成以及相关实践
查看>>
使mysql支持emoji
查看>>
Latex字符集
查看>>
C++中的构造和析构顺序
查看>>