oracle基本命令

2021-07-17 05:45:13 字數 948 閱讀 5847

sqlplus 鏈結oracle資料庫

sqlplus / as sysdba

1、檢視當前的資料庫檔案一般都是放在** select name from v$datafile;

2、建立表空間 create tablespace 表空間名 datafile '對應的檔名' size 大小;

3、建立使用者 create user 使用者名稱 identified by 密碼 default tablespace 使用者預設使用哪乙個表空間;

例如: create user skdata1 identified by skdata1 default tablespace skfp;

4、查詢資料庫已經在用的使用者

select username from dba_users

5、對使用者開放許可權

例如:grant create view,connect,resource,query rewrite to skdata;

6、以skdata使用者鏈結資料庫

例如:connect skdata/skdata

7、執行檔案中的資料庫指令碼

例如:@c:\01.table.sql

8、檢視某個使用者下一共有多少個表和檢視 0617表75個,檢視5個;0531表71個,檢視5個

例如:select count(*) from user_tables;select count(*) from user_views;

9、如何檢視資料庫字符集

select * from nls_database_parameters

10、刪除已經建立的使用者

例如:drop user skdata cascade;

11、刪除表空間

例如:drop tablespace skfp including contents and datafiles;

oracle基本命令

1 describe查詢表結構 describe xuesheng 名稱 空值 型別 id number 38 xing ming varchar2 25 yu wen number shu xue number 2 select 列名稱 from 表名稱 select from xuesheng ...

oracle基本命令

1 命令列登入 sqlplus scott tiger sqlplus scott tiger 192.168.146.128 1521 orcl 2 開始錄屏spool d 基本查詢.txt 執行該語句後oracle會在d盤建立乙個 基本查詢.txt 檔案 結束關閉錄屏spool off 如果不執...

Oracle基本命令

1.create user username identified by password 建使用者名稱和密碼oracle oracle 2.grant connect,resource,dba to username 授權 grant connect,resource,dba,sysdba to ...