由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - question: how to drop a tablespace
相关主题
Export Oracle db schema onlyoracle里有些怪怪的表,不只是哪里来的?
请问:如何从windows single instance migrate to linux RAChow to know how many uses exists in my db?
coolbid, 问个问题create database 在oracle中有什么用处?
是不是要用RMAN作备份,Oracle DB 必须在ARCHIVELOG mode状态Help: 如何在oracle 9i 中添加1 个user?
抱怨一下 数据库 里头的一些不严谨。[转载] question on SQL
tablespace是个啥样的概念啊?How to creat user in Oracle?
oracle求助问个RMAN问题
Oracle 8i export and import ?怎么设置多个用户 (Oracle 10g)?
相关话题的讨论汇总
话题: tablespace话题: drop话题: question话题: datafile话题: deleted
进入Database版参与讨论
1 (共1页)
o**n
发帖数: 14
1
the associated datafile was deleted accidentally,
s****d
发帖数: 13
2
drop tablespace tab_name

【在 o**n 的大作中提到】
: the associated datafile was deleted accidentally,
o**n
发帖数: 14
3
because the datafile was deleted, can't drop it that way.

【在 s****d 的大作中提到】
: drop tablespace tab_name
m****a
发帖数: 2
4
try this:
select tablespace_name,file_name,status from dba_data_files;
if the datafiles you deleted still shows "AVILABLE"
you need to do this for each of those files:
alter database data file 'filename' offline;
then you can do
drop tablespace tablespacename.

【在 o**n 的大作中提到】
: because the datafile was deleted, can't drop it that way.
1 (共1页)
进入Database版参与讨论
相关主题
怎么设置多个用户 (Oracle 10g)?抱怨一下 数据库 里头的一些不严谨。
Oracle database link problemtablespace是个啥样的概念啊?
how to run this scriptoracle求助
出道oracle dba 面试题Oracle 8i export and import ?
Export Oracle db schema onlyoracle里有些怪怪的表,不只是哪里来的?
请问:如何从windows single instance migrate to linux RAChow to know how many uses exists in my db?
coolbid, 问个问题create database 在oracle中有什么用处?
是不是要用RMAN作备份,Oracle DB 必须在ARCHIVELOG mode状态Help: 如何在oracle 9i 中添加1 个user?
相关话题的讨论汇总
话题: tablespace话题: drop话题: question话题: datafile话题: deleted