首頁 資料庫 mysql教程 数据文件从系统文件迁移到asm的操作专栏

数据文件从系统文件迁移到asm的操作专栏

Jun 07, 2016 pm 03:56 PM
oracle

select file_name ,tablespace_name from dba_data_files ;

FILE_NAME                      TABLESPACE_NAME
--------------------------------------------- ------------------------------
+DATA/rac/datafile/system.259.926647219       SYSTEM
+DATA/rac/datafile/sysaux.260.926647323       SYSAUX
+DATA/rac/datafile/undotbs1.261.926647405     UNDOTBS1
+DATA/rac/datafile/undotbs2.263.926647467     UNDOTBS2
+DATA/rac/datafile/users.264.926647499          USERS
+DATA/rac/datafile/admin_tbs.274.927927081    ADMIN_TBS
+DATA/rac/datafile/admin_tb2.275.927927171    ADMIN_TB2
+DATA/rac/datafile/tbs_low_freq.276.927939255 TBS_LOW_FREQ
/oracle/app/oracle/11.2/db_1/dbs/q1_orders    Q1_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/q2_orders    Q2_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/q3_orders    Q3_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/q4_orders    Q4_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/2006_orders  2006_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/2005_orders  2005_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/2004_orders  2004_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/old_orders   OLD_ORDERS
/oracle/app/oracle/11.2/db_1/dbs/cc_this_mont CC_THIS_MONTH

数据文件都节点1本地。

案例重演:
sys@RAC> show parameter db_create_file_dest

NAME                     TYPE     VALUE
------------------------------------ ----------- ------------------------------
db_create_file_dest             string     +DATA

采用了omf管理
sys@RAC> create tablespace qn datafile size 20m ;

Tablespace created.

sys@RAC> select file_name ,tablespace_name from dba_data_files ;

FILE_NAME                      TABLESPACE_NAME
--------------------------------------------- ------------------------------
.........
+DATA/rac/datafile/qn.277.928807173          QN
此时发现数据文件qn建在ASM存储上

sys@RAC> create tablespace qn2 datafile 'qn2' size 20m ;
Tablespace created.
sys@RAC> select file_name ,tablespace_name from dba_data_files ;

FILE_NAME                      TABLESPACE_NAME
--------------------------------------------- ------------------------------
/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12   CC_PREV_12MTH
/oracle/app/oracle/11.2/db_1/dbs/cc_old_tran  CC_OLD_TRAN
+DATA/rac/datafile/qn.277.928807173          QN
/oracle/app/oracle/11.2/db_1/dbs/qn2          QN2
此时发现数据文件qn2建在系统文件上,这样会出问题的,其节点报错。

那么如何把这个数据库的系统文件迁移到ASM上呢?

在线迁移数据文件至ASM上:

1. offline数据文件
   select file_name ,tablespace_name from dba_data_files  where tablespace_name in ('Q1_ORDERS','Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;
   FILE_NAME                             TABLESPACE_NAME
   ------------------------------------------------------------ ------------------------------
   /oracle/app/oracle/11.2/db_1/dbs/q1_orders             Q1_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/q2_orders             Q2_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/q3_orders             Q3_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/q4_orders             Q4_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/2006_orders             2006_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/2005_orders             2005_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/2004_orders             2004_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/old_orders             OLD_ORDERS
   /oracle/app/oracle/11.2/db_1/dbs/cc_this_month             CC_THIS_MONTH
   /oracle/app/oracle/11.2/db_1/dbs/cc_prev_month             CC_PREV_MONTH
   /oracle/app/oracle/11.2/db_1/dbs/cc_prev_12             CC_PREV_12MTH
   /oracle/app/oracle/11.2/db_1/dbs/qn2                 QN2

2. rman copy
   alter tablespace Q1_ORDERS offline ;

   backup as copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q1_orders'  format '+DATA';
   or
   copy datafile  '/oracle/app/oracle/11.2/db_1/dbs/q1_orders' to '+DATA';


  RMAN>  copy datafile  '/oracle/app/oracle/11.2/db_1/dbs/q1_orders' to '+DATA';

  Starting backup at 2016-11-25 02:55:42
  using target database control file instead of recovery catalog
  allocated channel: ORA_DISK_1
  channel ORA_DISK_1: SID=28 instance=rac1 device type=DISK
  channel ORA_DISK_1: starting datafile copy
  input datafile file number=00009 name=/oracle/app/oracle/11.2/db_1/dbs/q1_orders
  output file name=+DATA/rac/datafile/q1_orders.278.928810547 tag=TAG20161125T025546 RECID=1 STAMP=928810550
  channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
  Finished backup at 2016-11-25 02:55:50

3. rename
  alter database rename file 'D:\NSOADP\SYSTEM01.DBF' to '+ORADATA/nsoa/datafile/system.260.877082571';
  or
  switch datafile 37 to copy;

  RMAN> switch datafile '/oracle/app/oracle/11.2/db_1/dbs/q1_orders' to copy ;
  datafile 9 switched to datafile copy "+DATA/rac/datafile/q1_orders.278.928810547"


4. recover
    recover datafile '+DATA/rac/datafile/q1_orders.278.928810547';

5. online
  alter tablespace Q1_ORDERS online

  sys@RAC> select file_name ,tablespace_name from dba_data_files  where tablespace_name in ('Q1_ORDERS')
    2  /

  FILE_NAME                             TABLESPACE_NAME
  ------------------------------------------------------------ ------------------------------
  +DATA/rac/datafile/q1_orders.278.928810547             Q1_ORDERS

快速恢复:
  sys@RAC> select file_name ,tablespace_name from dba_data_files  where tablespace_name in ('Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;

  FILE_NAME                             TABLESPACE_NAME
  ------------------------------------------------------------ ------------------------------
  /oracle/app/oracle/11.2/db_1/dbs/q2_orders             Q2_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/q3_orders             Q3_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/q4_orders             Q4_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/2006_orders             2006_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/2005_orders             2005_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/2004_orders             2004_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/old_orders             OLD_ORDERS
  /oracle/app/oracle/11.2/db_1/dbs/cc_this_month             CC_THIS_MONTH
  /oracle/app/oracle/11.2/db_1/dbs/cc_prev_month             CC_PREV_MONTH
  /oracle/app/oracle/11.2/db_1/dbs/cc_prev_12             CC_PREV_12MTH
  /oracle/app/oracle/11.2/db_1/dbs/qn2                 QN2

sys@RAC>    select 'alter tablespace '|| tablespace_name||' offline;'  from dba_data_files  where tablespace_name in ('Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;

'ALTERTABLESPACE'||TABLESPACE_NAME||'OFFLINE;'
--------------------------------------------------------
alter tablespace Q2_ORDERS offline;
alter tablespace Q3_ORDERS offline;
alter tablespace Q4_ORDERS offline;
alter tablespace 2006_ORDERS offline;
alter tablespace 2005_ORDERS offline;
alter tablespace 2004_ORDERS offline;
alter tablespace OLD_ORDERS offline;
alter tablespace CC_THIS_MONTH offline;
alter tablespace CC_PREV_MONTH offline;
alter tablespace CC_PREV_12MTH offline;
alter tablespace QN2 offline;

sys@RAC> sys@RAC> alter tablespace Q2_ORDERS offline;
alter tablespace Q3_ORDERS offline;
alter tablespace Q4_ORDERS offline;
alter tablespace 2006_ORDERS offline;
alter tablespace 2005_ORDERS offline;
alter tablespace 2004_ORDERS offline;
alter tablespace OLD_ORDERS offline;
alter tablespace CC_THIS_MONTH offline;
alter tablespace CC_PREV_MONTH offline;
alter tablespace CC_PREV_12MTH offline;
alter tablespace QN2 offline;

sys@RAC> alter tablespace "2006_ORDERS" offline
                 *
ERROR at line 1:
ORA-02140: invalid tablespace name

sys@RAC> alter tablespace 2005_ORDERS offline
                 *
ERROR at line 1:
ORA-02140: invalid tablespace name

sys@RAC> alter tablespace 2004_ORDERS offline
                 *
ERROR at line 1:
ORA-02140: invalid tablespace name

alter tablespace "2004_ORDERS" offline;
alter tablespace "2005_ORDERS" offline;
alter tablespace "2006_ORDERS" offline;

 select 'copy datafile '''||file_name||''' to ''+DATA'';'  from dba_data_files  where tablespace_name in ('Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;

'COPYDATAFILE'''||FILE_NAME||'''TO''+DATA'';'
----------------------------------------------------------------------------------------------------------------------------------------------------------
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q2_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q3_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q4_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/2006_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/2005_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/2004_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/old_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_this_month' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_month' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/qn2' to '+DATA';

RMAN> copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q2_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q3_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/q4_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1
/dbs/2006_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/2005_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/2004_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/old_orders' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_this_month' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_month' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12' to '+DATA';
copy datafile '/oracle/app/oracle/11.2/db_1/dbs/qn2' to '+DATA';Starting backup at 2016-11-25 03:20:57
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00010 name=/oracle/app/oracle/11.2/db_1/dbs/q2_orders
output file name=+DATA/rac/datafile/q2_orders.279.928812061 tag=TAG20161125T032059 RECID=3 STAMP=928812062
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
Finished backup at 2016-11-25 03:21:02

RMAN>
Starting backup at 2016-11-25 03:21:08
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00011 name=/oracle/app/oracle/11.2/db_1/dbs/q3_orders
output file name=+DATA/rac/datafile/q3_orders.280.928812071 tag=TAG20161125T032109 RECID=4 STAMP=928812073
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:21:17

RMAN>
Starting backup at 2016-11-25 03:21:22
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00012 name=/oracle/app/oracle/11.2/db_1/dbs/q4_orders
output file name=+DATA/rac/datafile/q4_orders.281.928812085 tag=TAG20161125T032124 RECID=5 STAMP=928812088
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
Finished backup at 2016-11-25 03:21:28

RMAN>
Starting backup at 2016-11-25 03:21:33
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00013 name=/oracle/app/oracle/11.2/db_1/dbs/2006_orders
output file name=+DATA/rac/datafile/2006_orders.282.928812095 tag=TAG20161125T032134 RECID=6 STAMP=928812099
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:21:42

RMAN>
Starting backup at 2016-11-25 03:21:46
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00014 name=/oracle/app/oracle/11.2/db_1/dbs/2005_orders
output file name=+DATA/rac/datafile/2005_orders.283.928812109 tag=TAG20161125T032148 RECID=7 STAMP=928812112
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:21:56

RMAN>
Starting backup at 2016-11-25 03:22:00
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00015 name=/oracle/app/oracle/11.2/db_1/dbs/2004_orders
output file name=+DATA/rac/datafile/2004_orders.284.928812123 tag=TAG20161125T032202 RECID=8 STAMP=928812126
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:22:10

RMAN>
Starting backup at 2016-11-25 03:22:14
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00016 name=/oracle/app/oracle/11.2/db_1/dbs/old_orders
output file name=+DATA/rac/datafile/old_orders.285.928812137 tag=TAG20161125T032216 RECID=9 STAMP=928812141
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:22:24

RMAN>
Starting backup at 2016-11-25 03:22:29
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00017 name=/oracle/app/oracle/11.2/db_1/dbs/cc_this_month
output file name=+DATA/rac/datafile/cc_this_month.286.928812151 tag=TAG20161125T032231 RECID=10 STAMP=928812154
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
Finished backup at 2016-11-25 03:22:34

RMAN>
Starting backup at 2016-11-25 03:22:45
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00018 name=/oracle/app/oracle/11.2/db_1/dbs/cc_prev_month
output file name=+DATA/rac/datafile/cc_prev_month.287.928812167 tag=TAG20161125T032246 RECID=11 STAMP=928812167
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01
Finished backup at 2016-11-25 03:22:47

RMAN>
Starting backup at 2016-11-25 03:22:52
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00019 name=/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12
output file name=+DATA/rac/datafile/cc_prev_12mth.288.928812175 tag=TAG20161125T032253 RECID=12 STAMP=928812175
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
Finished backup at 2016-11-25 03:22:57

Starting backup at 2016-11-25 03:26:09

RMAN>
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00022 name=/oracle/app/oracle/11.2/db_1/dbs/qn2
output file name=+DATA/rac/datafile/qn2.289.928812371 tag=TAG20161125T032611 RECID=13 STAMP=928812376
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 2016-11-25 03:26:18


 sys@RAC> select 'switch  datafile '''||file_name||''' to copy;'  from dba_data_files  where tablespace_name in ('Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;

'SWITCHDATAFILE'''||FILE_NAME||'''TOCOPY;'
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q2_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q3_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q4_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/2006_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/2005_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/2004_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/old_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_this_month' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_month' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/qn2' to copy;

RMAN> switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q2_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q3_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/q4_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/
dbs/2006_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/2005_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/2004_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/old_orders' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_this_month' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_month' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/cc_prev_12' to copy;
switch    datafile '/oracle/app/oracle/11.2/db_1/dbs/qn2' to copy;
datafile 10 switched to datafile copy "+DATA/rac/datafile/q2_orders.279.928812061"
RMAN>
datafile 11 switched to datafile copy "+DATA/rac/datafile/q3_orders.280.928812071"
RMAN>
datafile 12 switched to datafile copy "+DATA/rac/datafile/q4_orders.281.928812085"
RMAN>
datafile 13 switched to datafile copy "+DATA/rac/datafile/2006_orders.282.928812095"
RMAN>
datafile 14 switched to datafile copy "+DATA/rac/datafile/2005_orders.283.928812109"
RMAN>
datafile 15 switched to datafile copy "+DATA/rac/datafile/2004_orders.284.928812123"
RMAN>
datafile 16 switched to datafile copy "+DATA/rac/datafile/old_orders.285.928812137"
RMAN>
datafile 17 switched to datafile copy "+DATA/rac/datafile/cc_this_month.286.928812151"
RMAN>
datafile 18 switched to datafile copy "+DATA/rac/datafile/cc_prev_month.287.928812167"
RMAN>
datafile 19 switched to datafile copy "+DATA/rac/datafile/cc_prev_12mth.288.928812175"
RMAN>
datafile 22 switched to datafile copy "+DATA/rac/datafile/qn2.289.928812371"

alter tablespace Q3_ORDERS online;
alter tablespace Q4_ORDERS online;
alter tablespace "2006_ORDERS" online;
alter tablespace "2005_ORDERS" online;
alter tablespace "2004_ORDERS" online;
alter tablespace OLD_ORDERS online;
alter tablespace CC_THIS_MONTH online;
alter tablespace CC_PREV_MONTH online;
alter tablespace CC_PREV_12MTH online;
alter tablespace QN2 online;

sys@RAC>  select file_name ,tablespace_name from dba_data_files  where tablespace_name in ('Q1_ORDERS','Q2_ORDERS','Q3_ORDERS','Q4_ORDERS','2006_ORDERS','2005_ORDERS','2004_ORDERS','OLD_ORDERS','CC_THIS_MONTH','CC_PREV_MONTH','CC_PREV_12MTH','QN2' ) ;
FILE_NAME                             TABLESPACE_NAME
------------------------------------------------------------ ------------------------------
+DATA/rac/datafile/q1_orders.278.928810547             Q1_ORDERS
+DATA/rac/datafile/q2_orders.279.928812061             Q2_ORDERS
+DATA/rac/datafile/q3_orders.280.928812071             Q3_ORDERS
+DATA/rac/datafile/q4_orders.281.928812085             Q4_ORDERS
+DATA/rac/datafile/2006_orders.282.928812095             2006_ORDERS
+DATA/rac/datafile/2005_orders.283.928812109             2005_ORDERS
+DATA/rac/datafile/2004_orders.284.928812123             2004_ORDERS
+DATA/rac/datafile/old_orders.285.928812137             OLD_ORDERS
+DATA/rac/datafile/cc_this_month.286.928812151             CC_THIS_MONTH
+DATA/rac/datafile/cc_prev_month.287.928812167             CC_PREV_MONTH
+DATA/rac/datafile/cc_prev_12mth.288.928812175             CC_PREV_12MTH
+DATA/rac/datafile/qn2.289.928812371                 QN2

至此系统上的数据文件都迁移到asm上。

更多相关教程请访问 MySQL视频教程

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

<🎜>:泡泡膠模擬器無窮大 - 如何獲取和使用皇家鑰匙
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
北端:融合系統,解釋
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
Mandragora:巫婆樹的耳語 - 如何解鎖抓鉤
3 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Java教學
1665
14
CakePHP 教程
1423
52
Laravel 教程
1321
25
PHP教程
1269
29
C# 教程
1249
24
oracle打不開怎麼辦 oracle打不開怎麼辦 Apr 11, 2025 pm 10:06 PM

Oracle 打不開的解決辦法包括:1. 啟動數據庫服務;2. 啟動監聽器;3. 檢查端口衝突;4. 正確設置環境變量;5. 確保防火牆或防病毒軟件未阻止連接;6. 檢查服務器是否已關閉;7. 使用 RMAN 恢復損壞的文件;8. 檢查 TNS 服務名稱是否正確;9. 檢查網絡連接;10. 重新安裝 Oracle 軟件。

oracle游標關閉怎麼解決 oracle游標關閉怎麼解決 Apr 11, 2025 pm 10:18 PM

解決 Oracle 游標關閉問題的方法包括:使用 CLOSE 語句顯式關閉游標。在 FOR UPDATE 子句中聲明游標,使其在作用域結束後自動關閉。在 USING 子句中聲明游標,使其在關聯的 PL/SQL 變量關閉時自動關閉。使用異常處理確保在任何異常情況下關閉游標。使用連接池自動關閉游標。禁用自動提交,延遲游標關閉。

oracle怎麼循環創建游標 oracle怎麼循環創建游標 Apr 12, 2025 am 06:18 AM

Oracle 中,FOR LOOP 循環可動態創建游標, 步驟為:1. 定義游標類型;2. 創建循環;3. 動態創建游標;4. 執行游標;5. 關閉游標。示例:可循環創建游標,顯示前 10 名員工姓名和工資。

oracle日誌寫滿怎麼辦 oracle日誌寫滿怎麼辦 Apr 12, 2025 am 06:09 AM

Oracle 日誌文件寫滿時,可採用以下解決方案:1)清理舊日誌文件;2)增加日誌文件大小;3)增加日誌文件組;4)設置自動日誌管理;5)重新初始化數據庫。在實施任何解決方案前,建議備份數據庫以防數據丟失。

oracle視圖怎麼導出 oracle視圖怎麼導出 Apr 12, 2025 am 06:15 AM

可以通過 EXP 實用程序導出 Oracle 視圖:登錄 Oracle 數據庫。啟動 EXP 實用程序,指定視圖名稱和導出目錄。輸入導出參數,包括目標模式、文件格式和表空間。開始導出。使用 impdp 實用程序驗證導出。

甲骨文在商業世界中的作用 甲骨文在商業世界中的作用 Apr 23, 2025 am 12:01 AM

Oracle不僅是數據庫公司,還是雲計算和ERP系統的領導者。 1.Oracle提供從數據庫到雲服務和ERP系統的全面解決方案。 2.OracleCloud挑戰AWS和Azure,提供IaaS、PaaS和SaaS服務。 3.Oracle的ERP系統如E-BusinessSuite和FusionApplications幫助企業優化運營。

HDFS配置CentOS需要哪些步驟 HDFS配置CentOS需要哪些步驟 Apr 14, 2025 pm 06:42 PM

在CentOS系統上搭建Hadoop分佈式文件系統(HDFS)需要多個步驟,本文提供一個簡要的配置指南。一、前期準備安裝JDK:在所有節點上安裝JavaDevelopmentKit(JDK),版本需與Hadoop兼容。可從Oracle官網下載安裝包。環境變量配置:編輯/etc/profile文件,設置Java和Hadoop的環境變量,使系統能夠找到JDK和Hadoop的安裝路徑。二、安全配置:SSH免密登錄生成SSH密鑰:在每個節點上使用ssh-keygen命令

oracle數據庫怎麼停止 oracle數據庫怎麼停止 Apr 12, 2025 am 06:12 AM

要停止 Oracle 數據庫,請執行以下步驟:1. 連接到數據庫;2. 優雅關機數據庫(shutdown immediate);3. 完全關機數據庫(shutdown abort)。

See all articles