oracle資料庫:
--1 資料庫的基本概念:
資料庫就是"資料"的"倉庫";
資料庫中包含表,關係以及操作物件;
資料存放在表中.
--程式架構
dbs包含dbms,還包含資料儲存系統
dbms:是用來管理資料的,比如:增加資料,刪除資料
更新資料等
--2 安裝oracle之後:
執行oracle時必須開啟的兩個功能:
oracleserviceorcl 和 tnslisenter;
-- 為了防止程式自啟使電腦開機遲鈍,可設定成手動.
啟動/關閉方式: cmd-- net start/stop oracleserviceorcl
lsnrctl start/stop
--登入使用者系統:
使用者型別: system ; sys; scott
sys超級使用者 只能以sysdba, sysoper的角色登入.
system 以normal的角色登入.
上述兩個使用者擁有比較高的許可權,可以建立使用者,刪除使用者等
鏈結資料庫: cmd---sqlplus
pl/sql developer---即pl/sql軟體視覺化登入
--解鎖scott使用者許可權
首次登入資料庫使用者時,scott使用者是被鎖定的.需要在system使用者下進行解鎖.
登入system使用者--alter user scott unlock;
然後登入scott使用者會要求改密碼,改完即可.
--連線命令:conn username/password@資料庫例項名字
例子:system/123456@orcl
sys/123456@orcl as sysdba
--建立使用者命令
create user 使用者名稱 identified by 密碼;
例子:create user wxh identified by 123456;
--許可權問題
oracle的使用者想要執行某些操作,必須要有執行該指令的許可權
例子:假如wxh使用者想要連線資料庫,就需要create session許可權
新建的wxh使用者缺少create session許可權賦予wxh使用者create session許可權
grant create session to wxh;
--基本查詢資料的命令
select * from scott.emp;
第一周作業(零基礎)
下列變數名中不合法的是?c a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print c.true d.in 下面哪個選項對應的 寫法是正確的?c a.print python print 新手村 b.print python print 新...
第一周作業(零基礎)
下列變數名中不合法的是?bc a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print 輸出函式 c.true d.in 下面哪個選項對應的 寫法是正確的?c d a.print python print 新手村 前面不該空格b.print ...
第一周作業(零基礎)
下列變數名中不合法的是?c a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print c.true d.in 下面哪個選項對應的 寫法是正確的?c a.print python print 新手村 b.print python print 新...