Sybase 能够用到的最大物理内存,单位2k,通常配置成主机物理内存的70%~80%
sp_configure “number of user connections”,180 ///180个用户连接数
通常根据实际并发呼叫来配,一般配置80~200
sp_configure “lock scheme”, allpages ///使用缺省:页锁
但有些并发 *** 作多的表需使用行锁,如cc_telebill表等
sp_configure “number of locks”,50000 /锁的数目5万
可以根据实际应用,一般10000~50000
sp_configure “max online engines”,2 ///cpu个数为2
单cpu使用缺省值,多cpu(4~8个)配成n-1个
number of engines at startup
sp_configure “number of worker processes”,2 //启用的工作进程数
单cpu使用缺省值,多cpu(4~8个)配成n-1个
sp_configure “number of open indexes ”,1000///打开的索引个数
sp_configure “number of open objects ”,1000 ///打开的事务个数
sp_configure "user log cache size",4096
日志缓存通常配成2048或4096
sp_configure "procedure cache size",50000/// 100M
存储过程缓存(运行存储过程),单位2k,通常根据需要配置50~200M
sp_cacheconfig "default data cache","1.2G"
设置数据缓存1.2G(所有cache值累加不能超过max memory)
sp_cacheconfig "default data cache", "cache_partition=2"
数据缓存分区(减少锁竞争)
重启sybase服务令所有参数生效
用group byselect ID,sum(val1) as totval1,sum(val2) as totval2
from TABLENAME where ID<125 and ID>122
group by ID
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)