0
点赞
收藏
分享

微信扫一扫

oracle学习29-检查操作系统版本和查询表中修改数据

20.检查操作系统版本:

必须是5.1 or 5.2。

实际为 6.1未通过 解决方法:

 修改参数文件oraparam.ini

• [Certified Versions]

• #You can customise error message shown for failure, provide value for CERTIFIED_VERSION_FAILURE_MESSAGE

• Windows=5.1,5.2,6.1 • 并且在其下方对应位置加上如下参数:

 • [Windows-6.1-required]

• #Minimum display colours for OUI to run • MIN_DISPLAY_COLORS=256

• #Minimum CPU speed required for OUI

• #CPU=300 • [Windows-6.1-optional] 保存,退出 ,重新安装即可

21.查询表中数据修改记录基于undo 以med_dept_dict

举例 select serial_no, dept_code,dept_name,input_code,  VERSIONS_STARTTIME,VERSIONS_ENDTIME, VERSIONS_OPERATION   from med_dept_dict VERSIONS BETWEEN TIMESTAMP MINVALUE AND MAXVALUE  WHERE VERSIONS_STARTTIME IS NOT NULL  ORDER BY VERSIONS_STARTTIME DESC;

select * from flashback_transaction_query  ;
 



举报

相关推荐

0 条评论