Oracle DBA 상용 명령 요약
//
create temporary tablespace zfmi_temp
tempfile 'D:\oracle\oradata\zfmi\zfmi_temp.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//tempfile
//
create tablespace zfmi
logging
datafile 'D:\oracle\oradata\zfmi\zfmi.dbf'
size 100m
autoextend on
next 32m maxsize 2048m
extent management local;
//datafile
//
drop user zfmi cascade;
//cascade , ,
//
:
drop tablespace zfmi including contents and datafiles cascade onstraints;
//including contents , , , ,
//including datafiles
//cascade constraints tablespace
, :
, , 。
( oracle9i ):
,filename , , ;tablespace_name 。
$ sqlplus /nolog
SQL> conn / as sysdba;
, :
SQL> shutdown abort
SQL> startup mount
SQL> alter database datafile 'filename' offline drop;
SQL> alter database open;
SQL> drop tablespace tablespace_name including contents;
//
create user zfmi identified by zfmi
default tablespace zfmi temporary tablespace zfmi_temp;
//identified by
// message DBA
GRANT DBA TO zfmi;
//
grant connect,resource to zfmi; (db2: )
:
Oracle imp/exp oracle 。exp dmp , imp dmp 。 , , 。
: SQLPLUS.EXE DOS( ) ,
DOS oracle 8i ora81BIN ,
EXP.EXE IMP.EXE 。
oracle java ,SQLPLUS.EXE、EXP.EXE、IMP.EXE 。
SQLPLUS.EXE EXP.EXE、IMP.EXE , 。
。
:
1 TEST , system manager D:daochu.dmp
exp system/manager@TEST file=d:daochu.dmp full=y
full=y TEST DBA , SID , TEST full-y
2 system sys
exp system/manager@TEST file=d:daochu.dmp owner=(system,sys)
3 inner_notify、notify_staff_relat
exp aichannel/aichannel@TESTDB2 file= d:datanewsmgnt.dmp tables=(inner_notify,notify_staff_relat)
4 table1 filed1 "00"
exp system/manager@TEST file=d:daochu.dmp tables=(table1) query=" where filed1 like '00%'"
, , winzip dmp 。
compress=y 。
1 D:daochu.dmp TEST 。
imp system/manager@TEST file=d:daochu.dmp
imp aichannel/aichannel@HUST full=y file=d:datanewsmgnt.dmp ignore=y
, , , 。
ignore=y 。
2 d:daochu.dmp table1
imp system/manager@TEST file=d:daochu.dmp tables=(table1)
。 , 。
:
, 。
。 tnsping TEST TEST 。
:
, sql*puls
, system/manager
,create user IDENTIFIED BY ( , )
,GRANT CREATE USER,DROP USER,ALTER USER ,CREATE ANY VIEW ,
DROP ANY VIEW,EXP_FULL_DATABASE,IMP_FULL_DATABASE,
DBA,CONNECT,RESOURCE,CREATE SESSION TO
, -cmd- dmp ,
imp userid=system/manager full=y file=*.dmp
imp userid=system/manager full=y file=filename.dmp
:
F:WorkOracle_Databackup>imp userid=test/test full=y file=inner_notify.dmp
Import: Release 8.1.7.0.0 - Production on 2 16 16:50:05 2006
(c) Copyright 2000 Oracle Corporation. All rights reserved.
: Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production
EXPORT:V08.01.07
ZHS16GBK ZHS16GBK NCHAR
UTF8 NCHAR ( ncharset )
. AICHANNEL AICHANNEL
. . "INNER_NOTIFY" 4
...
, 。
:
Oracle , Export/Import .
import9.par,
, :imp parfile=/filepath/import9.par
import9.par :
FROMUSER=TGPMS
TOUSER=TGPMS2 ( : FROMUSER TOUSER,FROMUSER TOUSER )
ROWS=Y
INDEXES=Y
GRANTS=Y
CONSTRAINTS=Y
BUFFER=409600
file==/backup/ctgpc_20030623.dmp
log==/backup/import_20030623.log
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
activemq 5.5 의 입문 은 설치, 시작, 데이터베이스 지속 화 를 포함한다Apache ActiveMQ 5.5.0 은 주로 유지보수 버 전 으로 130 개가 넘 는 문 제 를 복 구 했 으 며 대부분 bug 와 개선 이 었 다. Improved performance for offline d...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.