当前位置:网站首页>SAP temporary tablespace error handling
SAP temporary tablespace error handling
2022-07-28 23:57:00 【wxgnolux】
ABAP The error message is as follows :
Find temporary tablespaces , non-existent .
Find the data file of the corresponding table space .

It should be during database migration , Temporary space is not migrated normally , As a result, the data file is not applied to the table space .
Because there is no business data in the temporary space , Can be reconstructed to deal with
-- Query tablespace files
select tablespace_name , file_name from dba_temp_files;
-- SAP Temporary table space PSAPTEMP The loss of Treatment method
-- 1. First create a temporary table space temp01, And change it to the default temporary table space .
create temporary tablespace temp01 tempfile '/oracle/TST/sapdata1/temp_1/temp01' size 100M autoextend off;
alter database default temporary tablespace temp01;
-- 2. Delete the old PSAPTEMP ( Because the file is missing Association , The corresponding file will not be deleted automatically ) Need to go to the system directory system rm Delete
drop tablespace PSAPTEMP including contents and datafiles cascade constraints;
-- 3. Create a new temporary table space , And specify it as the default temporary space
create temporary tablespace PSAPTEMP tempfile '/oracle/TST/sapdata1/temp_1/temp.data1' SIZE 50M AUTOEXTEND ON NEXT 50M MAXSIZE 2048M EXTENT MANAGEMENT LOCAL;
alter database default temporary tablespace PSAPTEMP;
-- 4. Delete For temporary use Space temp01 And related documents .
drop tablespace temp01 including contents and datafiles cascade constraints;
Query tablespace , Back to normal
Run the original abap The program works properly .
边栏推荐
- VirtualLab基础实验教程-8.傅里叶变换(1)
- Eight performance analysis indicators of effective supply chain management (Part 1)
- Pycharm new project
- Jincang database kingbasees client programming interface guide ODBC (5. Development process)
- Leetcode61. 旋转链表
- [data mining engineer - written examination] Dahua shares in 2022
- 电商数据模型设计
- C language n*n matrix evaluation and inverse matrix [easy to understand]
- pycharm新建项目
- RHCE the next day
猜你喜欢

Inspur clusterenginev4.0 remote command execution vulnerability cve-2020-21224

AUTOCAD——Excel表格导入CAD、CAD合并两兄弟

Multi sensor fusion positioning (II) -- map based positioning

A new generation of ultra safe cellular battery, Sihao aipao, will be available from 139900 yuan

Xss.haozi.me range details

DoIP测试开发实践

NAT如何配置地址转换

Leetcode61. 旋转链表

SAP 临时表空间错误处理

Genomic DNA isolation Worthington ribonuclease A
随机推荐
双重for循环优化
OpenCV宏定义
软件设计师的错题汇总
fastdfs工作原理(技术原理)
剑指 Offer 41. 数据流中的中位数
YOLOV5学习笔记(一)——原理概述
VS2005透过SourceOffSite访问VSS2005的设置方法「建议收藏」
SQL left connection, internal connection writing method "recommended collection"
CANoe应用案例之DoIP通信
Websocket heartbeat mechanism (keep alive mechanism)
脲酶丨Worthington杰克豆脲酶的特性及测定方案
请简述list,set,map类型的集合的各自特点(简述三种不同的继承方式下)
Leetcode 763. partition labels divide alphabetic intervals (medium)
多传感器融合定位(三)——惯性技术
实时数仓:美团点评Flink的实时数仓应用分享
E-commerce data model design
RHCE first day
Connection pool - return connection details (Part 2)
DevOps在物联网解决方案中的应用
利用递归和链表头插法实现链表成组的翻转——LeetCode25 K个一组翻转链表