如何查看Oracle数据库实例状态?set oracle_sid=你要查询的实例service名称
sqlplus / as sysdba
SQL>select status from v$instance; 01show sga02 03set wrap off04set linesize 40005-- 查看正在运行的后台进程06select * from v$bgprocess;07select * from v$bgproc...
MySQL-5.6.14 Introduction to MySQL MySQL is a widely used and fast SQL database server. It is a client/server implementation that consists of a server daemon and many d...
第一次登录的密码在~/.mysql_secret中 ?12345[html] cat .mysql_secret 进入mysql之后需要设置密码,否则不能进行任何操作,如果提示ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords. \  ...
关于oracle中的rownum陷阱 最近在做关于某一oracle 的sql优化:涉及到关于分页的一些内容。例如查询top 5 的数据 我们需要写: www.2cto.com select * from (select * from customer order by custcredit)where rownum < = 5 而不是写:select * from customer order by c...
在Oracle 10g中global_name的修改方法 1、用alter語句這種修改方法,重啟數據庫,無效! alter database rename global_name to ORCL; 2、用alter語句這種修改方法,重啟數據庫,有效!但是不是我想要的結果,雖然域名修改后變短了,但是建立DB_LINK還有域名存在! alter database re...