[该文章已设置加密,请点击标题输入密码访问]
oracle赋予权限
grant create any table to username;
grant create any procedure to username;
grant execute any procedure to username;
创建执行JOB权限
grant create job to 用户;
grant manage scheduler to 用户;
给一个表的读取权限
grant select on 表...
让emlog不显示某个分类的方法
一、首页不显示某个分类的文章
修改emlog根目录include/controller/log_controller.php下
找到$sqlSegment ='ORDER BY top DESC ,date DESC';(我用的emlog5.3.1是第19行)
将这行修改为$sqlSegment ='and sorti...
oracle存储过程 捕获异常
在oracle存储过程中,碰到一个查询不到数据,导致抛出oracle异常的问题,
下面是示例:
v_no varchar2(50);--这是一个用来存储查询出来数据的中间变量
v_sql := 'select fvalue from zy.tparam where fcode = 9999';//这是sql语句
execute immediate v_sql into v_no;--这句报错了,因为查不到数据
if v_no is null then
...
关于写SQL语句是否要加 where 1=1
[该文章已设置加密,请点击标题输入密码访问]