如何查看SQL Edition? [英] How to check SQL Edition?

查看:85
本文介绍了如何查看SQL Edition?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,

如何检查SQL(在本地系统中)的安装版本是Express Edition还是Enterprise Edition?

谢谢大家.

Dear All,

How can i check if installed version of SQL (in local system) is express edition or enterprises edition?

Thank you all in advance.

推荐答案

尝试

Try

SELECT @@VERSION


或对于SQL Server 2000及更高版本,以下内容更易于解析:)


or for SQL Server 2000 and above the following is easier to parse :)

SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')



有关更多信息,请单击此处 [ ^ ]



使用c#:选中此 answer [



For more Click here[^]



Using c#: Check this answer[^]




试试这个:
Hi,

Try this :
SELECT ServerProperty('edition') AS 'SQL Server Instance'


如果您使用的是Mgmt Studio
进入菜单
=>帮助
=>关于
If you are using Mgmt Studio
Go to Menu
=>Help
=>About


这篇关于如何查看SQL Edition?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆