Error[8]: Undefined offset: 1, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述SQL> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES SQL> set linesize 3000; SQL> select * from scott.dept; DEPTNO DNAME LOC ---------- --- sql> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES sql> set linesize 3000; sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> delete from scott.dept where deptno=40; 1 row deleted. sql> commit; Commit complete. sql> select * from scott.dept as of timestamp sysdate-10/1440; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO sql> flashback table scott.dept to timestamp to_timestamp(‘2019-07-15 10:50:00‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table scott.t1; table dropped. sql> select * from scott.t1; select * from scott.t1 * ERROR at line 1: ORA-00942: ??????? sql> show recyclebin; sql> conn scott/tiger Connected. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDeCRWbPyvgUww4qMBWZQ==[+++] table 2019-07-15:11:29:27 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table t1; table dropped. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDjk1f0Qg/gUww4qMDc8w==[+++] table 2019-07-15:11:31:00 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. [[email protected] ~]$ sqlplus / as sysdba sql*Plus: Release 11.2.0.4.0 Production on 星期一 7月 15 11:40:51 2019 copyright (c) 1982,2013,Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning,olAP,Data Mining and Real Application Testing options sql> select to_char(systimestamp,‘yyyy-mm-dd HH24:MI:SS‘) as sysdt,dbms_flashback.get_system_change_number scn from dual; SYSDT SCN --------------------------------------------------------- ---------- 2019-07-15 11:40:53 990134 sql> truncate table scott.t1; table truncated. sql> sql> select * from scott.t1; no rows selected sql> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. sql> startup mount; ORACLE instance started. Total System Global Area 1586708480 bytes Fixed Size 2253624 bytes Variable Size 973081800 bytes Database Buffers 603979776 bytes Redo Buffers 7393280 bytes Database mounted. sql> flashback database to timestamp to_timestamp(‘2019-07-15 11:40:53‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> alter database open resetlogs; Database altered. sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. 总结

以上是内存溢出为你收集整理的oracle 11g 闪回测试过程全部内容,希望文章能够帮你解决oracle 11g 闪回测试过程所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 166, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
Error[8]: Undefined offset: 2, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述SQL> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES SQL> set linesize 3000; SQL> select * from scott.dept; DEPTNO DNAME LOC ---------- --- sql> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES sql> set linesize 3000; sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> delete from scott.dept where deptno=40; 1 row deleted. sql> commit; Commit complete. sql> select * from scott.dept as of timestamp sysdate-10/1440; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO sql> flashback table scott.dept to timestamp to_timestamp(‘2019-07-15 10:50:00‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table scott.t1; table dropped. sql> select * from scott.t1; select * from scott.t1 * ERROR at line 1: ORA-00942: ??????? sql> show recyclebin; sql> conn scott/tiger Connected. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDeCRWbPyvgUww4qMBWZQ== table 2019-07-15:11:29:27 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table t1; table dropped. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDjk1f0Qg/gUww4qMDc8w==[+++] table 2019-07-15:11:31:00 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. [[email protected] ~]$ sqlplus / as sysdba sql*Plus: Release 11.2.0.4.0 Production on 星期一 7月 15 11:40:51 2019 copyright (c) 1982,2013,Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning,olAP,Data Mining and Real Application Testing options sql> select to_char(systimestamp,‘yyyy-mm-dd HH24:MI:SS‘) as sysdt,dbms_flashback.get_system_change_number scn from dual; SYSDT SCN --------------------------------------------------------- ---------- 2019-07-15 11:40:53 990134 sql> truncate table scott.t1; table truncated. sql> sql> select * from scott.t1; no rows selected sql> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. sql> startup mount; ORACLE instance started. Total System Global Area 1586708480 bytes Fixed Size 2253624 bytes Variable Size 973081800 bytes Database Buffers 603979776 bytes Redo Buffers 7393280 bytes Database mounted. sql> flashback database to timestamp to_timestamp(‘2019-07-15 11:40:53‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> alter database open resetlogs; Database altered. sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. 总结

以上是内存溢出为你收集整理的oracle 11g 闪回测试过程全部内容,希望文章能够帮你解决oracle 11g 闪回测试过程所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 166, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
oracle 11g 闪回测试过程_非关系型数据库_内存溢出

oracle 11g 闪回测试过程

oracle 11g 闪回测试过程,第1张

概述SQL> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES SQL> set linesize 3000; SQL> select * from scott.dept; DEPTNO DNAME LOC ---------- --- sql> select flashback_on from v$database; FLASHBACK_ON ------------------------------------------------------ YES sql> set linesize 3000; sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> delete from scott.dept where deptno=40; 1 row deleted. sql> commit; Commit complete. sql> select * from scott.dept as of timestamp sysdate-10/1440; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO sql> flashback table scott.dept to timestamp to_timestamp(‘2019-07-15 10:50:00‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.dept; DEPTNO Dname LOC ---------- ------------------------------------------ --------------------------------------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table scott.t1; table dropped. sql> select * from scott.t1; select * from scott.t1 * ERROR at line 1: ORA-00942: ??????? sql> show recyclebin; sql> conn scott/tiger Connected. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDeCRWbPyvgUww4qMBWZQ== table 2019-07-15:11:29:27 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. sql> drop table t1; table dropped. sql> show recyclebin; ORIGINAL name RECYCLEBIN name OBJECT TYPE DROP TIME ---------------- ------------------------------ ------------ ------------------- T1 BIN$jbDjk1f0Qg/gUww4qMDc8w== table 2019-07-15:11:31:00 sql> flashback table t1 to before drop; Flashback complete. sql> select * from t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. [[email protected] ~]$ sqlplus / as sysdba sql*Plus: Release 11.2.0.4.0 Production on 星期一 7月 15 11:40:51 2019 copyright (c) 1982,2013,Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning,olAP,Data Mining and Real Application Testing options sql> select to_char(systimestamp,‘yyyy-mm-dd HH24:MI:SS‘) as sysdt,dbms_flashback.get_system_change_number scn from dual; SYSDT SCN --------------------------------------------------------- ---------- 2019-07-15 11:40:53 990134 sql> truncate table scott.t1; table truncated. sql> sql> select * from scott.t1; no rows selected sql> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. sql> startup mount; ORACLE instance started. Total System Global Area 1586708480 bytes Fixed Size 2253624 bytes Variable Size 973081800 bytes Database Buffers 603979776 bytes Redo Buffers 7393280 bytes Database mounted. sql> flashback database to timestamp to_timestamp(‘2019-07-15 11:40:53‘,‘yyyy-mm-dd hh24:mi:ss‘); Flashback complete. sql> alter database open resetlogs; Database altered. sql> select * from scott.t1; ID ---------- 1 2 3 4 5 6 7 8 8 rows selected. 总结

以上是内存溢出为你收集整理的oracle 11g 闪回测试过程全部内容,希望文章能够帮你解决oracle 11g 闪回测试过程所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/sjk/1161197.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存