在Oracle 10gR2中设定指定的恢复点实现轻松闪回
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 Oracle href="http://search.e800.com.cn/Oracle" target=_blank alt="Oracle"> Oracle 9i引入的闪回查询功能显示前一个时间点的查询结果。但是,表本身并没有改变。 Oracle 10g 增强了闪回功能,可
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入
Oracle href="http://search.e800.com.cn/Oracle" target=_blank alt="Oracle">Oracle 9i引入的闪回查询功能显示前一个时间点的查询结果。但是,表本身并没有改变。Oracle 10g增强了闪回功能,可以永久闪回一个表格。现在Oracle 10g第二版通过增加指定的恢复点,使这一过程更加方便。
存储
应用恢复点不必知道准确的SCN。恢复点建立后,它即恢复当前SCN。因此,使用恢复点名称等同于使用对应的SCN。
CREATE RESTORE POINT(创建恢复点)命令的语法很简单:
CREATE RESTORE POINT restore_point_name;
FLASHBACK ANY TABLE或SELECT ANY DICTIONARY权限需要建立一个正常(无保证)的恢复点。一旦恢复点不再需要,对应的DROP RESTORE POINT命令就将它删除。
列表A显示向OE模式提供的正确许可,建立一个恢复点,然后在一个错过正确WHERE子句的错误UPDATE后建立一个FLASHBACK TABLE。
<br>SQL> CONNECT / AS SYSDBA<br><br>Connected.<br><br>SQL> GRANT SELECT ANY DICTIONARY TO oe; <br>Grant succeeded. <br>SQL> CONNECT OE/OE<br><br>Connected. <br>SQL> -- Tables must have row movement enabled to flash back<br><br>SQL> ALTER TABLE warehouses 2 ENABLE ROW MOVEMENT; <br>Table altered. <br>SQL> CREATE RESTORE POINT my_update; <br>Restore point created. <br>SQL> COLUMN name FORMAT a25<br><br>SQL> COLUMN time FORMAT a32<br><br>SQL> <br>SQL> SELECT name, scn, time, <br>guarantee_flashback_database 2 FROMv$restore_point; <br>NAME SCN TIME GUA <br><br>------------------------- ---------- ------------------------------ <br><br>MY_UPDATE 734934 10-AUG-06 03.32.29.000000000 PM NO <br>SQL> UPDATE warehouses 2 SET warehouse_name = ''Bellevue, WA''; <br>9 rows updated. <br>SQL> COMMIT; <br>Commit complete. <br>SQL> SELECT warehouse_id, warehouse_name 2 FROM warehouses; <br>WAREHOUSE_ID WAREHOUSE_NAME <br><br>------------ ----------------------------------- <br>1 Bellevue, WA 2 Bellevue, WA 3 Bellevue, WA 4 Bellevue, <br>WA 5 Bellevue, WA 6 Bellevue, WA 7 Bellevue, WA 8 Bellevue,<br>WA 9 Bellevue, WA 9 rows selected.SQL> CONNECT / AS SYSDBA Connected.<br><br>SQL> GRANT SELECT ANY DICTIONARY TO oe; <br>Grant succeeded. <br>SQL> CONNECT OE/OE<br><br>Connected. <br>SQL> -- Tables must have row movement enabled to flash back<br><br>SQL> ALTER TABLE warehouses 2 ENABLE ROW MOVEMENT; <br>Table altered. <br>SQL> CREATE RESTORE POINT my_update; <br>Restore point created. <br>SQL> COLUMN name FORMAT a25<br><br>SQL> COLUMN time FORMAT a32<br><br>SQL> <br>SQL> SELECT name, scn, time, <br>guarantee_flashback_database 2 FROMv$restore_point; <br>NAME SCN TIME GUA <br><br>------------------------- ---------- ------------------------------- <br><br>MY_UPDATE 734934 10-AUG-06 03.32.29.000000000 PM NO <br>SQL> UPDATE warehouses 2 SET warehouse_name = ''Bellevue, WA''; <br>9 rows updated. <br>SQL> COMMIT; <br>Commit complete. <br>SQL> SELECT warehouse_id, warehouse_name 2 FROM warehouses; <br>WAREHOUSE_ID WAREHOUSE_NAME <br><br>------------ -----------------------------------<br>1 Bellevue, WA 2 Bellevue, WA 3 Bellevue, <br>WA 4 Bellevue, WA 5 Bellevue, WA 6 Bellevue, WA 7 Bellevue,<br>WA 8 Bellevue, WA 9 Bellevue, WA 9 rows selected. <br>SQL> FLASHBACK TABLE warehouses 2 TO RESTORE POINT my_update; <br>Flashback complete. <br>SQL> SELECT warehouse_id, warehouse_name 2 FROM warehouses; <br>WAREHOUSE_ID WAREHOUSE_NAME <br><br>------------ ----------------------------------- <br>1 Southlake, Texas 2 San Francisco 3 New Jersey 4 Seattle, <br>Washington 5 Toronto 6 Sydney 7 Mexico City 8 Beijing 9 Bombay <br>9 rows selected.<br><br> <br>SQL> FLASHBACK TABLE warehouses 2 TO RESTORE POINT my_update; <br>Flashback complete. <br>SQL> SELECT warehouse_id, warehouse_name 2 FROM warehouses; <br>WAREHOUSE_ID WAREHOUSE_NAME <br><br>------------ ----------------------------------- <br>1 Southlake, Texas 2 San Francisco 3 New Jersey 4 Seattle, <br>Washington 5 Toronto 6 Sydney 7 Mexico City 8 Beijing 9 Bombay <br>9 rows selected. Copy after login |
列表A
恢复点存储在控制文件中,所以即使数据库关闭(安装好,但未开),它们仍然有效。这意味着你还可在FLASHBACK DATABASE命令中使用它们。
作者:Bob Watkins(OCP、MCDBA、MCSE、MCT)是一位有25年经验的计算机专业人士,从事过技术培训师、顾问与数据库管理员等职。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



To query the Oracle tablespace size, follow the following steps: Determine the tablespace name by running the query: SELECT tablespace_name FROM dba_tablespaces; Query the tablespace size by running the query: SELECT sum(bytes) AS total_size, sum(bytes_free) AS available_space, sum(bytes) - sum(bytes_free) AS used_space FROM dba_data_files WHERE tablespace_

Oracle View Encryption allows you to encrypt data in the view, thereby enhancing the security of sensitive information. The steps include: 1) creating the master encryption key (MEk); 2) creating an encrypted view, specifying the view and MEk to be encrypted; 3) authorizing users to access the encrypted view. How encrypted views work: When a user querys for an encrypted view, Oracle uses MEk to decrypt data, ensuring that only authorized users can access readable data.

There are three ways to view instance names in Oracle: use the "sqlplus" and "select instance_name from v$instance;" commands on the command line. Use the "show instance_name;" command in SQL*Plus. Check environment variables (ORACLE_SID on Linux) through the operating system's Task Manager, Oracle Enterprise Manager, or through the operating system.

Uninstall method for Oracle installation failure: Close Oracle service, delete Oracle program files and registry keys, uninstall Oracle environment variables, and restart the computer. If the uninstall fails, you can uninstall manually using the Oracle Universal Uninstall Tool.

Data import method: 1. Use the SQLLoader utility: prepare data files, create control files, and run SQLLoader; 2. Use the IMP/EXP tool: export data, import data. Tip: 1. Recommended SQL*Loader for big data sets; 2. The target table should exist and the column definition matches; 3. After importing, data integrity needs to be verified.

There are the following methods to get time in Oracle: CURRENT_TIMESTAMP: Returns the current system time, accurate to seconds. SYSTIMESTAMP: More accurate than CURRENT_TIMESTAMP, to nanoseconds. SYSDATE: Returns the current system date, excluding the time part. TO_CHAR(SYSDATE, 'YYY-MM-DD HH24:MI:SS'): Converts the current system date and time to a specific format. EXTRACT: Extracts a specific part from a time value, such as a year, month, or hour.

To create a user in Oracle, follow these steps: Create a new user using the CREATE USER statement. Grant the necessary permissions using the GRANT statement. Optional: Use the RESOURCE statement to set the quota. Configure other options such as default roles and temporary tablespaces.

SQL statements can be created and executed based on runtime input by using Oracle's dynamic SQL. The steps include: preparing an empty string variable to store dynamically generated SQL statements. Use the EXECUTE IMMEDIATE or PREPARE statement to compile and execute dynamic SQL statements. Use bind variable to pass user input or other dynamic values to dynamic SQL. Use EXECUTE IMMEDIATE or EXECUTE to execute dynamic SQL statements.
