sp_configure配置

Sybase配置参数 
sp_configure 'max online engines',4
go
--配置启动cpu个数
sp_configure 'number of engines at startup',4 
go
--配置最大内存数
sp_configure 'max memory' ,2097151
go
--分配最大存储过程缓存
sp_configure 'procedure cache',102400
go
--配置高速缓存
sp_cacheconfig 'default data cache' , '700M'
go
--缺省缓存分配页大小
sp_poolconfig 'default data cache','200M','16K'
go
--网络包大小
sp_configure 'max network packet size',1024
go
--最大连接数
sp_configure 'number of user connections',500
go
--最大打开对象
sp_configure 'number of open object',9000
go
--最大索引
sp_configure 'number of open index',10000
go
--最大锁数
sp_configure 'number of locks',100000
go
--增加网络内存
--sp_configure 'additional network memory',1024
go
--锁内存
sp_configure 'lock shared memory',512
go

你可能感兴趣的:(数据库)