本帖最后由 liuqinwen1989 于 2012-05-29 16:10:31 编辑

解决方案 »

  1.   

    exception
      when others then  
          begin
              execute immediate 'drop table STAT_1DAY_VISITOR_' || i_user_id;
          exception
              when others then
                  null;
          end
          begin
              execute immediate 'drop table stat_1DAY_domain_' || i_user_id;
          exception
              when others then
                  null;
          end
          begin
              execute immediate 'drop table STAT_1DAY_URL_' || i_user_id;
          exception
              when others then
                  null;
          end
    end p_create_table_new;