任务型sql

Posted 阳光-源泉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了任务型sql相关的知识,希望对你有一定的参考价值。

1.创建表空间与用户,因为数据文件没有指定路径,所以需要修改数据文件路径,才有了下面的需求。

create tablespace wo datafile ‘wo.dbf‘ size 20m;
create user wo identified by "123abc" default tablespace wo;
grant connect,resource to wo;

 

针对非系统表空间,对sysaux,users表空间同样适用
select * from v$datafile;
select tablespace_name,file_name,online_status from dba_data_files where tablespace_name=‘WO‘;
alter tablespace WO offline;
host mv /u01/app/oracle/product/11.2/db_1/dbs/wo.dbf /u01/app/oracle/oradata/LCP1/datafile/
alter tablespace WO rename datafile ‘/u01/app/oracle/product/11.2/db_1/dbs/wo.dbf‘ to ‘/u01/app/oracle/oradata/LCP1/datafile/wo.dbf‘;
select tablespace_name,file_name,online_status from dba_data_files where tablespace_name=‘WO‘;
alter tablespace WO online;

 

针对系统表空间,对UNDOTBS1、TEMP表空间也适用。该方法需要数据库处于mount状态
shutdown immediate
startup mount
host mv /u01/app/oracle/product/11.2/db_1/dbs/system01.dbf /u01/app/oracle/oradata/LCP1/datafile/
alter tablespace WO rename datafile ‘/u01/app/oracle/product/11.2/db_1/dbs/system01.dbf‘ to ‘/u01/app/oracle/oradata/LCP1/datafile/system01.dbf‘;
alter database open;
select tablespace_name,file_name,online_status from dba_data_files where tablespace_name=‘SYSTEM‘;
















以上是关于任务型sql的主要内容,如果未能解决你的问题,请参考以下文章

任务型对话—— DST(对话状态追踪)

Fork/Join 型线程池与 Work-Stealing 算法

原创task-oriented dialogues 面向任务型对话综述

18行为型模式之责任链模式

具备打小型目标的能力,PCL-191型远程火箭炮的主要作战任务是啥?

线性状态动态规划 P1280 尼克的任务资源分配型动态规划