首页 > 数据库 >oracle提示错误1033,ora-1033

oracle提示错误1033,ora-1033

时间:2024-01-23 09:03:01浏览次数:30  
标签:logs online oracle 1033 redo ora

oracle提示错误1033,ora-1033 制造问题和解决问题

 

文章标签: oracle提示错误1033
系统是winxp,使用Imp导入数据到用户user1的时候,关闭了cmd窗口,结果在删除user1的时候,出现了ora-1033错误。

解决办法:

>connect /as sysdba

>shutdown

>startup mount

>alter database recover database until cancel;

if the above command fails try

>recover database using backup controlfile until cancel;"

on success type

>ALTER DATABASE OPEN RESETLOGS;

stop and restart oracle service

open resetlogs:

摘自Oracle官方文档,供参考:

1、Archives the current online redo logs (if they are accessible) and then erases the contents of the online redo logs and resets the log sequence number to 1. For example, if the current online redo logs are sequence 1000 and 1001 when you open RESETLOGS, then the database archives logs 1000 and 1001 and then resets the online logs to sequence 1 and 2.

2、Creates the online redo log files if they do not currently exist.

3、Reinitializes the control file metadata about online redo logs and redo threads.

4、Updates all current datafiles and online redo logs and all subsequent archived redo logs with a new RESETLOGS SCN and time stamp.

联机日志损坏,不能做完整修复时,用的。

相当于把所有的联机日志重新“格式化”。

这是会丢失数据的。

标签:logs,online,oracle,1033,redo,ora
From: https://www.cnblogs.com/Pro-Cyon/p/17981534

相关文章

  • 基于项目的协同过滤推荐算法(Item-Based Collaborative Filtering Recommendation Alg
    前言协同过滤推荐系统,包括基于用户的、基于项目的息肉通过率等,今天我们读一篇基于项目的协同过滤算法的论文。今天读的论文为一篇名叫《基于项目的协同过滤推荐算法》(Item-BasedCollaborativeFilteringRecommendationAlgorithms)。摘要Recommendersystemsapplyknowledg......
  • Oracle Partition 分区详细总结
    选中sql得表名,右键查看,可以观察到tab页最后一项有个“分区”的字样。增加分区相当于在sql中增加过滤条件。类似partitionby函数groupby是分组函数,partitionby是分区函数(像sum()等是聚合函数),注意区分。表空间如下所示点击查看代码partitionbylist(PROD_NUM)(partitio......
  • Proxmox VE 8 试装Oracle 23c
    作者:田逸(formyz)Oracle当前的最新版本是23c,虽然官方网站下载不了它的正式版本,但是却提供了一个性能受限的免费版本“OracleDatabase23.3Free”(存储容量受限、内存使用受限)。这里就只好用这个免费的版本来做测试,免费的版本能正常部署,那么将来的正式版本的部署也不在话下。Oracle......
  • oracle导入表批量更新操作
    1、把excel的数据整理成跟数据库存放呼叫相应的样式2、把excel文件另存为*.txt或*.csv文件,最好是*.csv文件,容易对数据做修改3、把转换好的*.txt或*.csv文件上传至数据库中(1)打开工具(tools)菜单-->文本导入器(TextImporter),导入转换好的文件,可以把标题名的复选框去掉4、选择对......
  • ora锁表查询语句与解锁
     锁表查询;selectt2.username,t2.sid,t2.serial#,t3.object_name,t2.OSUSER,t2.MACHINE,t2.PROGRAM,t2.LOGON_TIME,t2.COMMAND,t2.LOCKWAIT,t2.SADDR,t2.PADDR,t2.TADDR,t2.SQL_ADDRESS,t1.LOCKED_MODEfromv$locked_objectt......
  • 冷泉港实验室 (The Cold Spring Harbor Laboratory)
    冷泉港实验室(TheColdSpringHarborLaboratory)又译为科尔德斯普林实验室,是一个非盈利的私人科学研究与教育中心,位于美国纽约州长岛上的冷泉港,此机构的研究对象包括癌症、神经生物学、植物遗传学、基因组学以及生物资讯学,其主要成就为分子生物学领域,在该研究所一共诞生了7......
  • oracle数据库检测
    连接数--数据库连接数selectcount(*)fromv$process;--数据库允许的最大连接数selectvaluefromv$parameterwherename='processes';--session连接数selectcount(*)fromv$session;--并发连接数selectcount(*)fromv$sessionwherestatus='ACTIVE';表空......
  • 存储故障,强制拉库报ORA-600 kcbzib_kcrsds_1处理---惜分飞
    联系:手机/微信(+8617813235971)QQ(107644445)标题:存储故障,强制拉库报ORA-600kcbzib_kcrsds_1处理作者:惜分飞©版权所有[未经本人同意,不得以任何形式转载,否则有进一步追究法律责任的权利.]硬件故障,客户自行强制resetlogs库,报ORA-600kcbzib_kcrsds_1错误2024-01......
  • 将数据表返回到之前的版本-oracle
    #开启行移动功能(不开启无法执行flashback)altertable表名enablerowmovement;#查看表存在那些版本时间点selectsystimestampfrom表名#将数据表回闪到某个大致的版本flashbacktable表名totimestampto_date('2024-01-1813:30:44','YYYY-MM-DDHH24:MI:SS')另:如......
  • vibora 经验
    pipinstallviboratortoise-ormfromtortoiseimportfields,modelsfromtortoise.contrib.pydanticimportpydantic_model_creatorclassUser(models.Model):id=fields.IntField(pk=True)username=fields.CharField(max_length=2......