基于触发器的分区创建
我有一个外键上的列表分区表。因此,如果我想插入一个新实体,丢失的分区会在插入时引发异常。我以为我是一个很酷的公爵,并使用触发器来创建新分区:-)但是该分区在执行期间不会变得可用。如果你稍等一下,一切都会正常(但 dbms_lock.sleep 不会成功)。
所以这是我的触发器(和所需的过程) - 请注意末尾附近的“检查分区部分”
CREATE OR REPLACE PROCEDURE Execute_DDL
(i_sql IN VARCHAR2)
AS
pragma autonomous_transaction;
BEGIN
EXECUTE IMMEDIATE (i_sql);
commit;
END;
/
。
CREATE OR REPLACE TRIGGER Q_FLD_NEW_PART_TRG
AFTER INSERT
ON Q_FLD
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
DECLARE
l_cnt number;
l_wait_cnt number := 0;
l_alter varchar2(1000);
l_job_stmt varchar2(1000);
l_job_nr number;
l_job dba_jobs_running%rowtype;
BEGIN
SELECT count(*) INTO l_cnt from user_tables
where table_name = 'QUOTE' and partitioned = 'YES';
if l_cnt <= 0 then return; end if;
l_alter := 'ALTER TABLE QUOTE ADD PARTITION QUOTE_PART_' || :new.name || ' VALUES (' || :new.id || ')';
l_job_stmt := 'begin Execute_DDL (''' || l_alter || '''); end;';
DBMS_JOB.SUBMIT (job => l_job_nr, what => l_job_stmt);
if l_job_nr is null then
raise_application_error(-20000, 'Partition Job Creation failed!', true);
end if;
-- wait for job to complete
while l_job_nr is not null loop
l_wait_cnt := l_wait_cnt +1;
if l_wait_cnt > 30 then raise_application_error(-20000, 'pratition creation timed out!'); end if;
begin
select * into l_job from dba_jobs_running where job = l_job_nr;
if l_job.failures >0 then
raise_application_error(-20000, l_job_stmt, true);
end if;
sys.dbms_lock.sleep(2);
exception when no_data_found then
l_job_nr := null; -- job completed
end;
end loop;
-- check partition available
/* this will lead into a "no data found" exception.
so i can not use the new partition immediatly. why??
sys.dbms_lock.sleep(2);
select count(*) into l_cnt
from user_objects
where object_type = 'TABLE PARTITION'
and subobject_name = 'QUOTE_PART_' || upper(:new.name);
if l_cnt <= 0 then
raise_application_error(-20000, 'Partition creation falied/timed out: ' || 'QUOTE_PART_' || :new.name, true);
end if;
*/
exception when others then
raise_application_error(-20000, l_job_stmt, true);
END q_fld_new_part_trg;
/
有人有解决这个问题的想法吗?我在 Linux 上使用 11gR2 64 位
I have a list partitioned table on a foreign key. So if I want to insert a new entity the missing partition throws an exception on insert. I thought I am a cool duke and use a trigger to create new partitions :-) But the partition will not become available during execution. If you wait a bit everything works fine (but a dbms_lock.sleep will no do the trick).
So this is my trigger (and needed procedure) - note the "check partition section" near the end
CREATE OR REPLACE PROCEDURE Execute_DDL
(i_sql IN VARCHAR2)
AS
pragma autonomous_transaction;
BEGIN
EXECUTE IMMEDIATE (i_sql);
commit;
END;
/
.
CREATE OR REPLACE TRIGGER Q_FLD_NEW_PART_TRG
AFTER INSERT
ON Q_FLD
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
DECLARE
l_cnt number;
l_wait_cnt number := 0;
l_alter varchar2(1000);
l_job_stmt varchar2(1000);
l_job_nr number;
l_job dba_jobs_running%rowtype;
BEGIN
SELECT count(*) INTO l_cnt from user_tables
where table_name = 'QUOTE' and partitioned = 'YES';
if l_cnt <= 0 then return; end if;
l_alter := 'ALTER TABLE QUOTE ADD PARTITION QUOTE_PART_' || :new.name || ' VALUES (' || :new.id || ')';
l_job_stmt := 'begin Execute_DDL (''' || l_alter || '''); end;';
DBMS_JOB.SUBMIT (job => l_job_nr, what => l_job_stmt);
if l_job_nr is null then
raise_application_error(-20000, 'Partition Job Creation failed!', true);
end if;
-- wait for job to complete
while l_job_nr is not null loop
l_wait_cnt := l_wait_cnt +1;
if l_wait_cnt > 30 then raise_application_error(-20000, 'pratition creation timed out!'); end if;
begin
select * into l_job from dba_jobs_running where job = l_job_nr;
if l_job.failures >0 then
raise_application_error(-20000, l_job_stmt, true);
end if;
sys.dbms_lock.sleep(2);
exception when no_data_found then
l_job_nr := null; -- job completed
end;
end loop;
-- check partition available
/* this will lead into a "no data found" exception.
so i can not use the new partition immediatly. why??
sys.dbms_lock.sleep(2);
select count(*) into l_cnt
from user_objects
where object_type = 'TABLE PARTITION'
and subobject_name = 'QUOTE_PART_' || upper(:new.name);
if l_cnt <= 0 then
raise_application_error(-20000, 'Partition creation falied/timed out: ' || 'QUOTE_PART_' || :new.name, true);
end if;
*/
exception when others then
raise_application_error(-20000, l_job_stmt, true);
END q_fld_new_part_trg;
/
Anyone an Idea to get around this? I use 11gR2 64 Bit on Linux
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 Oracle 11.2,是否有理由不使用 间隔分区在这里?假设
ID
是一个数字列,这样的内容会告诉 Oracle 在每次插入新的ID
值时创建一个新分区。Since you are using Oracle 11.2, is there a reason that you wouldn't use interval partitioning here? Assuming that
ID
is a numeric column, something like this would tell Oracle to create a new partition every time you inserted a newID
value.