Oracle Optimization Technology

Source: Internet
Author: User

1. Partitioning technology

2. Indexing technology

3. Temporary table Technology


--Create a transaction-level temporary table, the data will be lost after commit, but the table structure still exists
CREATE GLOBAL Temporary TABLE Admin_work_area
(StartDate DATE,
EndDate DATE,
Class CHAR (20))
On COMMIT DELETE ROWS;


--Create session-level temporary tables where the data is lost after the session but the table structure still exists
CREATE GLOBAL Temporary TABLE admin_work_area (
StartDate DATE,
EndDate DATE,
Class CHAR (20))
On COMMIT PRESERVE ROWS;
--Create an index first, otherwise the index will not be created after inserting the data
Create INDEX T_index on Admin_work_area (startdate);

INSERT into Admin_work_area values (Sysdate,sysdate, ' session temperary ');
SELECT * from Admin_work_area;
Commit

--Truncate before you can delete data
TRUNCATE TABLE Admin_work_area;
drop table Admin_work_area;

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.