oracle資料庫常用命令1.建立表空間
create
tablespace
表空間名
defaul
『filename』/path』
伺服器端路徑
』 [size
integer
[k | m
][autoextend
[off
| on]];
size:
制定檔案的大小,
autoextend
用來啟動或禁用資料檔案的自動擴充套件。
2.建立新使用者
create
user
使用者名稱identified
by 密碼
[default
tablespace
表空間]
[temporary
tablespace
臨時表空間];
3.為使用者授權
grant
許可權 to
使用者grant
許可權 on
表名 to
使用者4.修改使用者密碼
alter
user
使用者名稱identified
by 密碼
;5.刪除使用者
drop
user
使用者名稱casaed;
6.檢視當前使用者
show
user
7.檢視當前時間
select
sysdate
from
dual;
8.檢視當前使用者下的所有表
select
table_name
from
user_tables;
9.檢視當前表的結構
desc
表名10.修改上一條的內容
edit;
資料庫基礎系列之二 mysqldump命令
1.用 mysqldump 對mysql 資料庫進行資料備份與恢復 下面假設要備份tm這個資料庫 shell mysqldump uroot p123456 tm tm 050519.sql 這時可以利用gzip壓縮資料,命令如下 shell mysqldump uroot p123456 tm g...
PHP連線oracel資料庫
工具 oracle資料庫 oracel11.2.0.1.0 注意要選擇對應的版本!2 解壓檔案後得到,將他們複製到 c wamp64 bin apache apache2.4.23 bin 不是c wamp64 bin php php7.0.10 ext 具體原因現在不知道。3 修改c wamp64...
oracel資料庫分頁方法
如從表中取出4 6行的資料 sql如下 得到4 6行的資料 select id,age from zystudent where id in select id from zystudent where rownum 6 and id not in select id from zystudent ...