1. bash: sqlplus: command not found
解決方法:
[oracle@dg1 ~]$ sqlplus /nolog
bash: sqlplus: command not found
[oracle@dg1 ~]$ ln -s $oracle_home/bin/sqlplus /usr/bin
ln: creating symbolic link `/usr/bin/sqlplus' to `/bin/sqlplus': permission deni ed
[oracle@dg1 ~]$ su - root
password:
[root@dg1 ~]# ln -s $oracle_home/bin/sqlplus /usr/bin
[root@dg1 ~]# su - oracle
[oracle@dg1 ~]$ sqlplus /nolog
2. 需建立listener.ora
# listener.ora network configuration file: \u01\oracle\network\admin\listener.ora
# generated by oracle configuration tools.
listener =
(description_list =
(description =
(address_list =
(address = (protocol = tcp)(host = 192.168.156.227)(port = 1521))))
) 3. oracle建立使用者
(1) dba登入
c:\documentsand settings\administrator>sqlplus /nolog
sql*plus:release 10.2.0.1.0 - production on 星期六 2月26 14:47:15 2011
sql>conn / as sysdba
已連線。
sql>
(2)建立表空間
create tablespace g3datatest
datafile 'd:\server\database\oracle\product\10.2.0\oradata\orcl\g3datatest.dbf'
size 100m
autoextend on
next 10m
maxsize200m;
預設為永久性的表空間。
(3)建立臨時表空間
create temporary tablespace g3datatest_temp
tempfile'd:\server\database\oracle\product\10.2.0\oradata\orcl\g3datatest_temp.dbf'
size 50m
autoextend on
next 10m
maxsize100m;
(4)建立使用者
create user g3datatest
identified by g3datatest
default tablespace g3datatest
temporarytablespace g3datatest_temp;
(5)授權使用者
grant connect,resource,dba to g3datatest;
(6)
提交事務
commit;
linux 安裝 oracle 記錄
需要給硬碟分割槽。使用fdisk 命令,然後mkfs 做檔案系統,最後使用mount進行掛載。修改 etc fstab自動掛載 win上安裝xming,linux export display winip 0.0 如果顯示出來的字型是方框,把linux 的lang設定為en us.utf 8 xmi...
Linux安裝oracle記錄
最近在忙著在linux部署程式,對於乙個很少使用命令列的菜菜來說,真的是一種挑戰。環境 linux version 2.6.32 431.11.2.el6.x86 64 red hat 4.4.7 4 oracle版本 11g r2 x86 64.首先安裝資料庫,具體過程檢視網上教程,有很多。在這裡...
linux下安裝jdk可能出現的問題
使用的時候出現乙個錯誤 bash usr local bin rar lib ld linux.so.2 bad elf interpreter no such file or directory 是因為64位系統中安裝了32位程式 解決方法 yum install glibc.i686 重新安裝以...