Oracle建立表空間和用戶 [sql] view plain copy 建立表空間和用戶的步驟: 用戶 建立:create user 用戶名 identified by "密碼"; 授權:grant create session to 用戶名 ...
.賦權 在原有權的賬號下個執行 grant select on psprd.functionName to user . 別名 在需要使用別名的賬號下執行 CREATE SYNONYM functionName FOR psprd.functionName ...
2018-07-23 09:09 0 1827 推薦指數:
Oracle建立表空間和用戶 [sql] view plain copy 建立表空間和用戶的步驟: 用戶 建立:create user 用戶名 identified by "密碼"; 授權:grant create session to 用戶名 ...
1,創建表空間 create tablespace hxzg_data logging datafile 'C:\app\data\hxzg_data.dbf' size 50m autoe ...
-- Create the user create user TAITOU default tablespace USERS temporary tablespace TEMP profile DEF ...
如將scott用戶下的emp表的查詢權限賦予system用戶,可用如下語句:grant select on emp to system; 更多權限:grant select, insert, upd ...
一、創建表空間 1.創建臨時表空間 create temporary tablespace TS_TEM_TAB_SPACE tempfile 'D:\oracle\TS_TEM_TAB_SPACE.dbf' size 50m autoextend on next ...
一、創建用戶並賦予權限 1、創建用戶 create user wangxiangyu identified by wangxiangyu; 2、賦權 grant dba to wangxiangyu; grant create session to wangxiangyu; --會話權限 ...
as '/home/oracle/datatmp' 3、賦權 directory目錄 grant ...
定義 函數用於計算和返回一個結果值,把經常需要進行的計算寫成函數,函數的調用是表達式的一部分。 函數與過程在創建的形式上有些相似,也是編譯后放在內存中供用戶使用。 函數必須有一個返回值,而過程沒有做強制的規定。 RETURN在聲明部分需要定義一個返回參數的類型 ...