sql server 2008数据库怎么配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql server 2008数据库怎么配置相关的知识,希望对你有一定的参考价值。

参考技术A create
database
dataname
这是创建数据库最简单的方法.数据库的各个属性都是默认.如
数据库文件

日志文件
存储目录.数据库大小等.
下面介绍下常用决定数据库属性的子句.
on:简单理解为定义存储数据库文件的位置,看下面代码.
filename:数据库的逻辑别名
size:数据库初始大小
maxsize:数据库初大容量
filegrowth:数据库每次增加的容量.
log
on:简单理解为定义存储数据库日志文件的位置.
看创建代码:
create
database
Accounting

on(name='AccountingName',
filename='F:\总结\Sql\创建和修改数据表\Accounting.mbdf',
size=10mb,
maxsize=50mb,
filegrowth=5mb)
log
on(name='AccountingLog',
filename='F:\总结\Sql\创建和修改数据表\Accounting.log',
size=10mb,
maxsize=50mb,
filegrowth=5mb)
上面说到了 filegrowth:数据库每次增加的容量 结合代码来说.就是初始数据库大小为10mb.当数据库容量要超出时.他会自动增加5mb.这会就是15mb大小.最大到50mb本回答被提问者采纳

sql server 2012 打开sql server configuration manager 报错

Error message when you open SQL Server Configuration Manager in SQL Server: "Cannot connect to WMI provider. You do not have permission or the server is unreachable"

技术分享

 

 

Workaround解决办法

To work around this problem, open a command prompt, type the following command, and then press ENTER:

mofcomp "%programfiles(x86)%\Microsoft SQL Server\number\Shared\sqlmgmproviderxpsp2up.mof"

Note For this command to succeed, the Sqlmgmproviderxpsp2up.mof file must be present in the %programfiles(x86)%\Microsoft SQL Server\number\Shared folder.
The value of number depends on the version of SQL Server:nnn

Microsoft SQL Server 2012                                110

Microsoft SQL Server 2008 R2                              100

Microsoft SQL Server 2008                              100

Microsoft SQL Server 2005                              90

After you run the Mofcomp tool, restart the WMI service for the changes to take effect. The service name is Windows management Instrumentation.

 

微软官方地址:https://support.microsoft.com/en-us/help/956013/error-message-when-you-open-sql-server-configuration-manager-in-sql-server-cannot-connect-to-wmi-provider.-you-do-not-have-permission-or-the-server-is-unreachable

以上是关于sql server 2008数据库怎么配置的主要内容,如果未能解决你的问题,请参考以下文章

sql server 2008怎么连接到服务器

sql server 2008服务器配置

SQL Server 2008 的配置管理器中的网络配置是空白的怎么办

sql2008连接时候这种情况怎么办

sql server 2008 评估期已过怎么破

sql server 2008 怎么让其他ip地址访问