摘要:
1.监听 启动监听:lsnrctl start 查看监听:lsnrctl status 停止监听:lsnrctl stop2.数据库 设置连接数据库:export ORACLE_SID=mydb 连接数据库:sqlplus /nolog 打开连接:connect / as sysdba ... 阅读全文
posted @ 2014-04-23 15:11
南丁格尔
阅读(268)
评论(0)
推荐(0)
摘要:
1.连接数据库 export ORACLE_SID=mydb sqlplus /nolog connect / as sysdba2.创建表空间 create tablespace mydbtest datafile '/home/oracle/mydb.dbf' size 200m;3.创建... 阅读全文
posted @ 2014-04-23 14:19
南丁格尔
阅读(829)
评论(0)
推荐(0)