自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

詳解sybase配置參數(shù)

數(shù)據(jù)庫
sybase數(shù)據(jù)庫配置是我們都非常關(guān)注的問題,下文對sybase數(shù)據(jù)庫中的配置參數(shù)作了詳細(xì)的說明,希望對您能夠有所幫助。

sybase配置參數(shù)是學(xué)習(xí)sybase過程中必須要掌握的知識,下面就對sybase配置參數(shù)進(jìn)行分類介紹,如果您對sybase配置參數(shù) 方面感興趣的話,不妨一看。

sp_configure 'max online engines',4
go
--配置啟動(dòng)cpu個(gè)數(shù)
sp_configure 'number of engines at startup',4
go
--配置最大內(nèi)存數(shù)
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
--網(wǎng)絡(luò)包大小
sp_configure 'max network packet size',1024
go

--最大連接數(shù)
sp_configure 'number of user connections',500
go
--最大打開對象
sp_configure  'number of open object',9000
go
--最大索引
sp_configure  'number of open index',10000
go
--最大鎖數(shù)
sp_configure  'number of locks',100000
go

--增加網(wǎng)絡(luò)內(nèi)存
--sp_configure  'additional network memory',1024
go

--鎖內(nèi)存
sp_configure  'lock shared memory',512
go

--優(yōu)化tempdb
select dbid, name,segmap
from sysusages,  sysdevices
where sysdevices.low  <= sysusages.size +vstart
and sysdevices.high >=sysusages.size+vstart -1
and dbid =2
and (status=2 or status=3)
go
use tempdb
go
sp_dropsegment  'default',tempdb,master
go
sp_dropsegment  'logsegment',tempdb,master
go

select dbid, name,segmap
from sysusages,  sysdevices
where sysdevices.low  <= sysusages.size +vstart
and sysdevices.high >=sysusages.size+vstart -1
and dbid =2
and (status=2 or status=3)
go

sp_cacheconfig tempdb_cache, '100M'
go
sp_poolconfig tempdb_cache,'50M','16K'
go
sp_bindcache 'tempdb_cache',tempdb
go
sp_helpcache tempdb_cache

select name,id from syscharsets

dbcc traceon(3604)
dbcc memusage

 

 

 

【編輯推薦】

Sybase數(shù)據(jù)庫維護(hù)技巧總結(jié)

深入探究SYBASE數(shù)據(jù)庫日志

Sybase日期函數(shù)應(yīng)用示例

Sybase數(shù)據(jù)庫函數(shù)全介紹

Sybase批量操作的實(shí)現(xiàn)

責(zé)任編輯:段燃 來源: 互聯(lián)網(wǎng)
相關(guān)推薦

2010-11-29 14:33:22

Sybase用戶管理

2010-11-29 13:39:13

Sybase字段類型

2010-09-26 11:00:48

JVM參數(shù)配置

2010-09-17 15:57:23

TomcatJVM

2023-09-01 08:18:53

Tomcat配置參數(shù)

2009-09-23 17:16:59

報(bào)表參數(shù)

2009-07-06 23:30:22

2010-06-01 17:14:03

Rsync 參數(shù)

2018-11-01 10:34:37

JVM內(nèi)存配置

2024-01-15 16:46:35

Nginx服務(wù)器

2011-03-08 10:58:09

Sybase數(shù)據(jù)庫

2010-06-21 16:13:57

Linux ar參數(shù)

2010-03-11 11:04:17

Linux fstab

2011-03-02 13:12:37

vsftpd配置

2009-07-14 17:34:53

Webwork配置

2023-03-29 23:23:00

MyBatis參數(shù)框架

2010-09-25 13:31:00

TomcatJVM

2009-08-16 19:46:16

linux中ftp命令ftp命令參數(shù)linux命令行參數(shù)

2012-05-30 15:25:22

JDKURLConnectiJava

2010-07-26 10:37:00

Perl模式匹配
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號