zabbix触发器主要是监测某个性能参数是否在合理范围内,在合理范围内处于正常状态,不在合理范围内就触发,然后执行相应的的action,进而可以发送邮件或者短信给用户。trigger表达式的使用规则{<server>:<key>.<function>(<parameter>)}<operator&g..
分类:
其他好文 时间:
2015-10-20 12:22:42
阅读次数:
283
2015-10-19控制文件位置SQL> select value from v$parameter where name ='control_files';SQL> show parameter control_files;SQL> col name for a55;SQL> select sta...
分类:
数据库 时间:
2015-10-19 15:25:55
阅读次数:
190
QUESTION NO: 500
In your database, the LDAP_DIRECTORY_SYSAUTH initialization parameter has been set to YES and the
users who need to access the database as DBAs have been granted SYSDBA enterprise ro...
分类:
其他好文 时间:
2015-10-19 09:28:36
阅读次数:
240
QUESTION NO: 498?
View the Exhibit for some of the parameter settings. You start a session and issue the following
command:
SQL>CREATE INDEX emp_ename ON emp(ename) TABLESPACE users INVISIBLE;
Wha...
分类:
其他好文 时间:
2015-10-18 23:17:04
阅读次数:
431
存储过程就是一条或多条SQL语句的集合,可视为批文件,但作用不仅限于批处理,本文介绍如何创建存储过程以及变量的使用,如何调用、查看等。创建语法如下: create procedure sp_name([proc_parameter]) (characteristics ...) r...
分类:
其他好文 时间:
2015-10-18 14:04:22
阅读次数:
226
QUESTION NO: 476
You have enabled resumable space allocation in your database by setting the RESUMABLE_TIMEOUT
parameter set to a nonzero value.
Which three statements about resumable space allocat...
分类:
其他好文 时间:
2015-10-18 11:29:51
阅读次数:
217
QUESTION NO: 460
Which setting enables the baselines by default in Oracle Database 11g?A. setting the STATISTICS_LEVEL parameter to TYPICAL
B. adding filters to the Automatic Database Diagnostic Moni...
分类:
其他好文 时间:
2015-10-18 10:06:59
阅读次数:
165
module compare_n(X,Y,XGY,XSY,XEY);input[width-1:0] X,Y;outputXGY,XSY,XEY;regXGY,XSY,XEY;parameter width=8;always@(X or Y) begin if(X==Y) XEY=1; ...
分类:
其他好文 时间:
2015-10-17 16:13:16
阅读次数:
138
Qt编译时经常出现以下警告:warning: unused parameter 'arg1' [-Wunused-parameter]warning: unused variable 'i' [-Wunused-variable]原因是由于某些函数参数或者某些变量未使用,这在程序当中有时候很正常;所...
分类:
其他好文 时间:
2015-10-16 23:07:18
阅读次数:
285
classMethod{// 值参数(Value Parameter):方法名称(参数类型 参数名称 [,参数类型 参数名称])// 引用参数(Reference Parameter):方法名称(ref 参数类型 参数名称 [,ref 参数类型 参数名称])// 输出参数(Output Parame...
分类:
其他好文 时间:
2015-10-16 15:12:30
阅读次数:
161