-
SYBASE_DBA速成(程序员篇)——数据库基本配置
资源介绍
数据库基本配置(1)
sp_configure “max memory”,524288 --可用内存总数 单位2K
go
sp_configure “procedure cache size”, 104857 --存储过程使用的内存 单位2K
go
sp_configure “number of locks”, 500000 --锁资源
go
sp_configure ‘number of devices’, 20 --设备
go
sp_configure ‘number of open objects’,2500 --对象
go
sp_configure ‘number of open indexes’,2500 --索引
go
sp_configure ‘number of user connections’,200 --客户端连接
go
sp_configure ‘number of open partitions’, 10000 --分区
go
sp_cacheconfig ‘default data cache’,‘300M’ --缺省cache
go
*
有些参数不能通过资源文件来定义,必须通过存储过程来设置。这些参数不能像资源文件那样定格在机器中,操作机器因人而异,所有这些参数可以通过具体要产生多少产品,提升机器的性能来表达出来。