The transaction-based temporary tables in Oracle are under 11 GB and 12C. After the statistical information of the temporary tables is collected, the former records are cleared, and the latter does not, which is an important difference. In the company
The transaction-based temporary tables in Oracle are under 11 GB and 12C. After the statistical information of the temporary tables is collected, the former records are cleared, and the latter does not, which is an important difference. In the company
The transaction-based temporary tables in Oracle are under 11 GB and 12C. After the statistical information of the temporary tables is collected, the former records are cleared, and the latter does not, which is an important difference. 12C is used in the company environment, and 11 GB is used at the site. Using temporary tables will slow down time and time. I have post before and it is not particularly good after using hint, as a result, the temporary result table is cleared. The solution is to create a temporary table based on the session and truncate it after each use. Otherwise, there will be a problem.
SQL> select * from v $ version;
BANNER CON_ID
------------------------------------------------------------------------------------------
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0-64bit Production 0
PL/SQL Release 12.1.0.1.0-Production 0
CORE 12.1.0.1.0Production 0
TNS for Linux: Version 12.1.0.1.0-Production 0
NLSRTL Version 12.1.0.1.0-Production 0
SQL> drop table test purge;
-- Transaction-based temporary table
SQL> create global temporary table test
(
ID number
)
On commit delete rows;
SQL> insert into test select object_id from dba_objects;
99412 rows inserted
SQL> select count (1) from test;
COUNT (1)
----------
99412
SQL> exec dbms_stats.gather_table_stats (user, 'test ');
SQL> select count (1) from test;
COUNT (1)
----------
99412
SQL> select * from v $ version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0-64bit Production
PL/SQL Release 11.2.0.1.0-Production
CORE 11.2.0.1.0Production
TNS for Linux: Version 11.2.0.1.0-Production
NLSRTL Version 11.2.0.1.0-Production
SQL> drop table test purge;
-- Transaction-based temporary table
SQL> create global temporary table test
(
ID number
)
On commit delete rows;
SQL> insert into test select object_id from dba_objects;
70379 rows inserted
SQL> select count (1) from test;
COUNT (1)
----------
70379
SQL> exec dbms_stats.gather_table_stats (user, 'test ');
SQL> select count (1) from test;
COUNT (1)
----------
0
Install Oracle 11gR2 (x64) in CentOS 6.4)
Steps for installing Oracle 11gR2 in vmwarevm
Install Oracle 11g XE R2 In Debian