一佳互联

展开菜单

SQL与Oracle 数据库的JDBC URL格式

SQL与Oracle 数据库的JDBC URL格式
Microsoft SQL Server 数据库的 JDBC URL 格式对于 Microsoft SQL Server 数据库,可以使用以下示例 JDBC URL 作为模型:■    按主机名连接到默认的(未命名的)SQL Server 实例:jdbc:sqlserver://host;databaseName=database■    按主机名和实例名连接到已命名的实例:jdbc:sqlserver://host...

12170问题引起的Oracle无法登陆问题解决办法

12170问题引起的Oracle无法登陆问题解决办法
 服务器每隔一段时间后就出现无法登陆的问题。重启数据库后,问题解决,但这并不是长久之计。查看日志文件:D:\app\administrator\diag\rdbms\hzdb\hzdb\alert的alert.log,出现大量的重复错误信息,如下所示:Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=172.16.206.83)(PORT=2067))   TNS-00505: 操作超时 ...

Changing Network Kernel Settings

Changing Network Kernel Settings
10.2. Changing Network Kernel SettingsOracle now uses User Datagram Protocol (UDP) as the default protocol on Linux for interprocess communication, such as cache fusion buffer transfers between the instances. However, starting with Ora...

How To: Network / TCP / UDP Tuning

How To: Network / TCP / UDP Tuning
How To: Network / TCP / UDP TuningThis is a very basic step by step description of how to improve the performancenetworking (TCP & UDP) on Linux 2.4+ for high-bandwidth applications. These settings are especiallyimportant for GigE link...

zabbix3.2添加日志文件监控

zabbix3.2添加日志文件监控
之前安装好 zabbix3.2与oracle,具体详见:http://www.micoder.cc/blog/1953.html需要添加服务器的应用服务的日志监控与系统登陆信息监控,这里就作一个简单的例子。在zabbix上配置监控主机后,添加监控项目:监控日志key首先要了解key,log[ file  ,<regexp>,<encoding>,<maxlines>,<mode>,<output>]file...

Zabbix 日志文件监控(官网原文)

Zabbix 日志文件监控(官网原文)
Log file monitoringOverviewZabbix can be used for centralized monitoring and analysis of log files with/without log rotation support. Notifications can be used to warn users when a log file contains certain strings or string patterns.To mon...

ORACLE数据库异步IO介绍

ORACLE数据库异步IO介绍
异步IO概念     Linux 异步 I/O (AIO)是 Linux 内核中提供的一个增强的功能。它是Linux 2.6 版本内核的一个标准特性,当然我们在2.4 版本内核的补丁中也可以找到它。AIO 背后的基本思想是允许进程发起很多 I/O 操作,而不用阻塞或等待任何操作完成。稍后或在接收到 I/O 操作完成的通知时,进程就可以检索 I/O 操作的结果。     Linux IO模型(I/O models)...