首页
学习
活动
专区
圈层
工具
发布
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    YashanDB ALTER TRIGGER语句

    通用描述ALTER TRIGGER语句用于更改一个已存在的触发器的相关属性或显式的重编译一个触发器。对于在SYS schema内的触发器,需要由SYS用户执行ALTER TRIGGER语句。...对于其他schema内的触发器,需要由其所属用户或拥有ALTER ANY TRIGGER权限的用户执行ALTER TRIGGER语句。触发器含义及限制请参考触发器章节。...#语句定义alter_trigger::=语法图代码syntax::= ALTER TRIGGER [schema "."] trigger_name (trigger_compile_clause...#trigger_name需要更改或重编译的触发器的名称。#trigger_compile_clause指定重编译选项,详见compile_clause描述。...DISABLE;-- 启用sales模式的tri触发器ALTER TRIGGER sales.tri ENABLE;-- 重命名sales模式的tri触发器ALTER TRIGGER sales.tri

    9310

    select for update和select for update wait和select for update nowait的区别

    他们三个共同点: 当使用select for update 或者select for update wait或者........,那么oralce会给符合where条件的数据行加上一个行级锁 1、select for update 但是如果你的select 语句加了for update,那么就不是上面这回事了,当oracle发现...会话二的update语句执行成功 2、select for update nowait for  update和for update nowait都会对查询到的当前结果集进行加锁,所不同的是,当有另外的会话在修改当前结果集中的数据...窗口2(相当于新建一个会话)select for update nowait操作 select * from test8 for update nowait ?...3、select for update wait 它也会对查询到的结果集进行加锁,select for update wait与select for update nowait不同的地方是,当有另外的会话对它的查询结果集中的某一行数据进行了加锁

    2.8K100
    领券