Oracle 几个常用命令

OEMC
启动dbconsole进程
1.
  emctl start dbconsole
2.停止dbconsole
  emctl stop dbconsole
3.
  emctl status dbconsole
 
window
  net start oracledbconsole<SID>
 
em的web路径 
https://hostname:1158/em/
isql*plus web路径

http://hostname:5560/isqlplus/

数据库配置
  dbca
网络配置
  netca

网络环境配置
  服务端Listener.ora:
  (DESCRIPTION=
   (ADDRESS=(PROTOCOL=tcp)(HOST=my-server) (PORT=1521)))

  客户端Listener.ora:
  (DESCRIPTION=
   (ADDRESS=(PROTOCOL=tcp)(HOST=my-server) PORT=1521))
   (CONNECT_DATA=
      (SERVICE_NAME=mydb.us.acme.com)))

    连接方式:
   本地命名:
       连接描述存储在tnsnames.ora中.
   目录命名:
        目录命名方式存储连接信息在LDAP目录服务中.
    简单连接命名(不需要配置):
        CONNECT username/password@host[:port][/service_name]
        启动监听
     lsnrctl start
  关闭监听
     lsnrctl stop
  查看监听状态
     lsnrctl status
      

你可能感兴趣的:(oracle)