在SQL Server2008 Express/Windows VIsta Home Edition上创建数据库
我在 Windows Vista Home Edition 上成功安装了 Express。当我尝试使用安装数据库的帐户创建数据库时,我收到以下消息:
标题:Microsoft SQL Server Management Studio
创建数据库“Test1”失败。 (Microsoft.SqlServer.Smo)
其他信息:
执行 Transact-SQL 语句或批处理时发生异常。 (Microsoft.SqlServer.ConnectionInfo)
数据库“master”中的 CREATE DATABASE 权限被拒绝。 (微软 SQL Server,错误:262)
I successfully installed Express on Windows Vista Home Edition. When I tried to create a database using the account under which it was installed I received this message:
TITLE: Microsoft SQL Server Management Studio
Create failed for Database 'Test1'. (Microsoft.SqlServer.Smo)
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
CREATE DATABASE permission denied in database 'master'. (Microsoft SQL Server, Error: 262)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您需要首先添加对帐户的适当访问权限,快速谷歌搜索给我这个:
http://msdn.microsoft.com/en-us/library/bb326612.aspx
It looks like that you need to add appropiate access to the account first, a quick googling give me this :
http://msdn.microsoft.com/en-us/library/bb326612.aspx
您是否尝试过使用“sa”用户创建它?另外,检查您的 Windows 用户是否在 sql-server 设置中对此数据库具有适当的权限。
Have you tried to create it with the 'sa' user ? Also, check whether your windows user has the proper permission for this database in the sql-server settings.