悲剧,绝对的悲剧,悲剧中的悲剧。
发布时间:2013-08-12 12:13:53
当运行archive命令的时候,数据库报错:SQL> alter system archive log current; alter system archive log current*ERROR at line 1:ORA-16038: log 1 sequence# 1 cannot be archivedORA-19809: limit exceeded for recovery filesORA-00312: on.........【阅读全文】
发布时间:2013-08-06 12:25:04
使用shell脚本实现对Oracle数据库的监控与管理将大大简化DBA的工作负担,如常见的对实例的监控,监听的监控,告警日志的监控,以及数据库的备份,AWR report的自动邮件等。本文给出Linux 下使用 shell 脚本来监控 Oracle 实例。 1、监控Oracle实例shell脚本robin@SZDB:~/dba_scripts/custom/bin> more ck_.........【阅读全文】
发布时间:2013-08-05 15:11:27
1.直接敲sqlplus并回车就是启动SQL*PLUS,会提示输入user及password将使用户登陆到缺省的数据库。 2.sqlplus user/password@<DB_IP>/<SID> 将连接到指定server上的指定数据库。 3.敲sqlplus /nolog就是使SQL*PLUS启动,但不登陆Oracle数据库。然后需要使用connect命令连接Oracle。 .........【阅读全文】
发布时间:2013-08-05 14:54:58
#1 - ciscologin to the devicechange to 'enable'-modetype the following command and replace the '???' with the correct numberscopy system:/running-config tftp://172.20.1.23/cisco/running-config-dv???.cfghere is an example: muempf@fenya:~$ telnet dv01b&n.........【阅读全文】
发布时间:2013-08-05 11:20:49
操作Oracle数据库可以使用sqlplus连接数据库之后,再交互式的使用数据库。另一种非交互的方式就是通过shell直接执行sql命令,可以直接在shell CLI端口执行命令,或者是通过shell脚本的方式。从sql命令的输入方式上,这种非交互的方式又可以分为两种,一种是命令行直接输入,另一种是sql文件输入。1. 命令行直接输入方式.........【阅读全文】