oracle-temporary table

Source: Internet
Author: User

In Oracle, temporal tables are divided into session-level and transaction-level, and session-level temporal table data exists throughout the session until the end of the session, and the transaction-level temporary table data disappears after the transaction ends, that is, the Commit/rollback or end session clears the data.

-----------------------------------------------------------------------------------------------
--Establish a temporary table at the transaction level
--Delete a temporary table at the transaction level
drop table Admin_work_area

--Create a temporary table at the transaction level
CREATE GLOBAL Temporary TABLE Admin_work_area
(
StartDate DATE,
EndDate DATE,
Class CHAR (20))
On COMMIT DELETE ROWS;


--Inserting data
INSERT into Admin_work_area values (sysdate,sysdate, ' temperary table ');

--Querying the data
SELECT * from Admin_work_area;
--Commit (the data you just inserted will be emptied)
Commit
-------------------------------------------------------------------------------------------------

--Establish session-level staging tables
--delete session-level temporary tables
TRUNCATE TABLE Admin_work_area;
drop table Admin_work_area;

CREATE GLOBAL Temporary TABLE Admin_work_area
(
StartDate DATE,
EndDate DATE,
Class CHAR (20)
) on COMMIT PRESERVE ROWS;

--Inserting data
INSERT into Admin_work_area values (Sysdate,sysdate, ' session temperary ');

SELECT * from Admin_work_area;
--Submit (the data you just inserted is still there)
Commit

oracle-temporary table

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.