Oracle唯讀事務測試學習筆記

來源:互聯網
上載者:User

我們知道直接執行select語句並不會開啟事務的,那麼怎麼開啟唯讀事務呢。

 

 代碼如下 複製代碼

--示範唯讀事務

--建立一張表
create table t_read_only(id number primary key)

--插入一條資料
insert into t_read_only(id) values(1);

--開啟唯讀事務(唯讀事務中只有查詢,不能出現DML語句)
set transaction read only;
declare
  type to_table_type is table of number index by binary_integer;
 
  v_numbers to_table_type;
begin
  select id bulk collect into v_numbers from t_read_only;--通過批量資料載入到數組中
  --列印出查詢出來的結果
  for i in 1..v_numbers.count loop
      dbms_output.put_line(v_numbers(i));
  end loop;
   --不提交事務執行下面的select語句,然後重新開啟sql視窗再次執行select語句。
end;

--將資料插入後執行查詢
select * from t_read_only;


--重新開啟一個sql視窗,執行insert一條資料
begin
  insert into t_read_only(id) values(2);
  commit;--提交事務
end;


我們可以發現事務2提交的資料庫並沒有在事務一中查詢出來,那麼唯讀事務的中只能看到在開啟事務時候的資料,對於其它事務的操作是不可見的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.