SYBASE数据库优化中各参数分别表示什么如何修改

SYBASE数据库优化中各参数分别表示什么如何修改,第1张

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

如果Windows的ODBC中已经有了SYBASE的驱动,则 *** 作就像导入DBASE数据表那样,先在导入对话框中的“文件类型”下拉框中选择ODBC Datebase,

这时就会d出一个“选定数据源”对话框,选择“机器数据源”选项卡,选中“Powersoft demo db V6”项,单击“确定”按钮;在导入对象列表中选择需要导入的SYBASE表就可以了。

import javasqlConnection;

import javasqlDriverManager;

public class DBHelper {

private static final String driverName="commicrosoftsqlserverjdbcSQLServerDriver"; //加载jdbc驱动

private static final String dbURL="jdbc:sqlserver://localhost:1433;DatabaseName=Sarlays"; //链接服务器和数据库Sarlays

private static final String username="sa"; //数据库用户名

private static final String password="123456"; //数据库密码

private static Connection conn=null;

//静态代码负责加载驱动

static {

try {

ClassforName(driverName);

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

eprintStackTrace();

}

}

//单例模式返回数据库链接对象

public static Connection getConnection() throws Exception{

if(conn==null){

conn=DriverManagergetConnection(dbURL, username, password);

return conn;

}

return conn;

}

}

以上就是关于SYBASE数据库优化中各参数分别表示什么如何修改全部的内容,包括:SYBASE数据库优化中各参数分别表示什么如何修改、如何导入一个SYBASE数据库中的表、JAVA中如何创建数据库连接里面参数的具体含义是什么等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9520097.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存