linux伺服器建立資料庫及擴張表空間

2021-08-22 19:13:07 字數 1400 閱讀 1845

建立資料庫:

1、登陸伺服器並切換賬號 su - oracle

2、開啟oracle sqlplus / as sysdba;

3、建立表空間

create tablespace topic_bup datafile 『dbf檔案的存放路徑名稱』 size 20480m;

3.1、建立pdb問題 missing datafile/tempfile clause

3.1.1、檢視對應create_file位址

show parameter db_create_file

3.1.2、 修改相應建立位置

–路徑為對應表空間位置

alter system set db_create_file_dest = 『路徑』;

4、建立pdb

create pluggable database 資料庫名稱 admin user 使用者名稱 identified by 資料庫密碼 default tablespace 資料庫表空間;

5、切換相應容 alter session set container=*;

6、開啟資料庫 startup

7、給對應資料庫授權

grant dba to *;

grant connect,resource to *;

7.1、若有前兩個許可權 則下面不需要給予|| 若dba許可權不給 則給與下面的許可權

grant create any sequence to *;

grant create any table to *;

grant delete any table to *;

grant insert any table to *;

grant select any table to *;

grant unlimited tablespace to *;

grant execute any procedure to *;

grant update any table to *;

grant create any view to *;

8、切換回cbd

alter session set container=cdb$root

擴張表空間:

1.登入伺服器,切換root使用者

2.切換到oracle目錄下:su - oracle

3.進入dbf目錄下,切換到sql:sqlplus /as sysdba

4.在oracle命令列中開啟session :

alter session set container=* open;

5.新增資料庫表空間:

alter tablespace * add datafile 『+data/dbf名稱 』 size 30g;

linux伺服器中安裝mysql資料庫及配置

目錄 2 上傳檔案 3 建立mysql使用者及組 4 建立需要的目錄 5 解壓檔案並移動 6 修改目錄為mysql使用者所有 7 mysql配置 8 設定環境變數 9 設定開機啟動 10 初始化資料庫 11 開放預設防火牆埠 12 登陸測試 13 修改密碼 groupadd mysql userad...

node 建立伺服器 鏈結資料庫

1.配置伺服器 引入 http模組 鏈結資料庫 mongoose.connect mongodb localhost students then console.log 資料庫鏈結成功 catch console.log 資料庫鏈結失敗 建立 伺服器 createserver 當客戶端訪問伺服器端的...

Linux伺服器安裝Mysql資料庫

解除安裝 先停掉mysql程序 沒有安裝過的可以直接跳過 用命令 yum y removeyum y remove mysql community client 5.6.38 2.el7.x86 64 解除安裝不掉的用 rpm ev 依次解除安裝 直到完全解除安裝 也可以通過如下配置 指定安裝目錄 ...