0

我正在尝试连接到 sybase ASE 15 企业版数据库。最初连接工作正常,但突然页面变得无响应。日志中没有异常,页面上也没有显示任何错误。另外我注意到只有与特定数据库相关的连接没有响应,其余的都工作得很好。但是,如果我重新启动服务器,一切正常。

我试图增加用户连接数和修改系统配置。但结果都是一样的。请帮帮我

4

1 回答 1

0

我建议您跟踪会话以获取更多日志信息:

 1- initiate a connection to the database
 2- use the stored procedure'sp_who' to identify the spid of the process of your connection on the server side
 3- set up the trace file for this spid:
 set tracefile 'log_file' for spid
(follow doc: http://www.sybase.com/files/White_Papers/ASE15-apptrace-070507-wp.pdf
 OR
http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc00743.1502/html/queryprocessing/BABJDBHJ.htm )
4- analyze your log file

让我们知道它是否有帮助。

于 2013-08-21T12:37:04.260 回答