下面介紹了oracle資料庫的基本操作,包括新建使用者,授權刪除等操作:
1.資料庫 11g 64位
2.檔案解壓:
win64_11gr2_database_1of2
win64_11gr2_database_2of2
這兩個在檔案必須解壓到同一目錄
3.本人遇見 情況,當安裝好資料庫之後,使用sys和system無法登陸.用一下方法來修改sys和system的預設密碼
system 預設密碼: manager
sys 預設密碼:change_on_install
sqlplus / as sysdba
檢視使用者 select * from user_users;
4.oracle修改密碼
alter user system identified by manager;
alter user sys identified by change_on_install;
5.oralce新建使用者
首先用系統dba身份連線 conn / as sysdba;
新建使用者:
create user ily identified by ihu
default tablespace users
6.oracle給使用者授權
grant connect,resource to ilu;
7建立表空間
create tablespace mytablespace
datafile 'f:\\mytablespace'
size 50m
8.oracle修改使用者表空間
alter user ilu default tablespace mytablespace
9.oracle匯入檔案
配置nls_lang(解決中文亂碼)
american_america.utf8
登陸@sql檔案路徑
10.刪除使用者
drop user *** cascade;
mysql nal mysql資料庫的最基本的命令
檢視mysql有哪些資料庫 建立乙個資料庫名稱為databasename,字元編碼為utf8支援中文 相應的在muysql目錄下就會有我們建立的資料庫的資料夾 進入資料庫,選中某個資料庫 use 資料庫名稱 查詢資料庫中下有哪些表 刪除資料庫 在資料庫中建立 create table 表的名稱 id...
oracle資料庫基本操作
一 增 有3種方法 1.使用insert插入單行資料 insert into 表名 列名 values 列值 insert into strdents name,age values atm 12 2.使用insert,select語句將現有表中的 資料新增到已有的新錶中 insert into 已...
oracle資料庫基本操作
檢視磁碟使用情況 df h 進入oracle su oracle sqlplus nolog conn as sysdba 檢視三種資料庫檔案 select from vlo gfil e 日 志檔案s elec t fr omv datafile 資料檔案 select from v contro...