1. 程式人生 > >Oracle 一些基本操作

Oracle 一些基本操作

1.連線Oracle資料庫

>sqlplus "/as sysdba"     ---預設使用本地NT賬號登入

2. 查詢SCOTT賬號的狀態

select username,account_status
from dba_users where username='SCOTT';

EXPIRED:表示資料庫使用者處於到期狀態,不能正常連線上資料庫。
 LOCKED:表示使用者處於鎖住狀態,不能使用該資料庫使用者,若需要重新使用,則需要解鎖。OPEN則表示使用者處於正常狀態,可以訪問資料庫中的資料

3.對使用者SCOTT解鎖:
    
    alter user scott account unlock;

4.顯示資料庫

show parameter db_name 

5.desc user_tables  顯示錶的結構

6.顯示當前使用者 show user

7.以賬號密碼登入 :conn scott/tiger

8.查看錶屬於哪個表空間

select * from user_tables where table_name = 'TEST'

9,查看錶屬於哪個資料檔案


select * from v$datafile;


select * from dba_segments  WHERE TABLESPACE_name = 'IMDMSS_DATA'