三层网络结构(核心层、汇聚层 、接入层)
三层网络结构:三层网络结构是采用层次化架构的三层网络。三层网络架构采用层次化模型设计,即将复杂的网络设计分成几个层次,每个层次着重于某些特定的功能,这样就能够使一个复杂的大问题变成许多简单的小问题。三层网络架构设计的网络有三个层次:核心层(网络的高速交换主干)、汇聚层(提供基于策略的连接)、接...
如何判断当前主机是物理机还是虚拟机?
Windows:在CMD里输入:Systeminfo | findstr /i "System Model"如果System Model:后面含有Virutal就是虚拟机,其他都是物理机或者用powershell命令:get-wmiobject win32_computersystem | fl modelLinux:在bash里输入:dmidecode -s system-product-name或者lshw -class system或者dmesg...
solaris下crontab -e
在solaris下crontab -e 在solaris下crontab -e命令出错,原来是需要设置export EDITOR=vi,下面是详细的说明。 1.crontab环境介绍1. cron服务在/etc/init.d/cron2. 执行文件/usr/sbin/cron3. cron配置文件在...
rman表空间基于时间点的不完全恢复
http://space.itpub.net/?viewspace-79054
oracle行列转换总结
oracle行列转换总结(转载)*行列转换包括以下六种情况:* 列转行* 行转列* 多列转换成字符串* 多行转换成字符串* 字符串转换成多列* 字符串转换成多行下面分别进行举例介绍。首先声明一点,有些例子需要如下10g及...
ORA-08104: this index object 93996 is being online built or rebuilt
SQL> alter index IN_CLIPINFO_PATH rebuild online;alter index IND_TEST_ID rebuild online*ERROR at line 1:ORA-08104: this index object 93996 is being online built or rebuiltselect object_id,statu...
windows下删除前一天备份批处理
@D:\oracle\10.2.0\db_1\BIN\exp.exe system/oracle file=d:\%date:~0,4%%date:~5,2%%date:~8,2%.dmp full=y log=d:\%date:~0,4%%date:~5,2%%date:~8,2%.log buffer=65536if "%date:~8,2%"=="01" (set /A dt=%date:...
ORA-00064: object is too large to allocate on this O/S
ORA-00064: object is too large to allocate on this O/SSymptoms 1: Instance Startup failed with ORA-00064 when processes parameter set to High ValueCauseThe problem is filed as a code bug (2204394)...
oracle中移动控制文件、数据文件、日志文件
windows环境中用:host copy 或 host moveunix或linux环境中一、移动控制文件第一种:$ sqlplus '/as sysdba'SQL> create pfile from spfileSQL> shutdown immediateSQL>cp /opt/oracle/oradata/control* /opt/ora...
DataGuard重建控制文件
1、主库重建控制文件:SQL> alter database backup controlfile to trace;将RESETLOGS改为NORESETLOGSSQL> shutdown immediate; SQL> @recreatectl.sh SQL> shutdown immediate; SQL> startup 数据库重起成功...
oracle rac 10.2 的在 linux 上的存储选项
Oracle RAC 高可用性是建立在共享存储概念之上的,因此共享存储的方式选择和部署对数据库性能就显得非常重要了。Oracle 集群需要存储的软件和数据项目内容最少磁盘空间Clusterware 软件集...
SSH连接ORACLE书写SQL显示^H问题
在.bash_profile里面加入stty erase ^hstty erase ^H之后source .bash_profile 使之生效就OK。
Oracle DataGuard 常用命令备忘
--Start Standby Databasestartup nomountalter database mount standby database;alter database recover managed standby database disconnect;--Disable/Enable archive log destinationsalter system set log...
归档报错
oracle中log_archive_dest_n和log_archive_dest不能共存,也就是只能使用其一ORA-16019: cannot use LOG_ARCHIVE_DEST_1 with LOG_ARCHIVE_DEST or LOG_ARCHIVE_DUPLEX_DEST可以执行如下命令清除:SQL> alter sys...
oracle分析函数row_number() over()使用
row_number() over ([partition by col1] order by col2) ) as 别名表示根据col1分组,在分组内部根据 col2排序而这个“别名”的值就表示每组内部排序后的顺序编号(组内连续的唯一的),[partition by col1] 可省略...
Oracle Profile 使用详解(转)
一、目的:Oracle系统中的profile可以用来对用户所能使用的数据库资源进行限制,使用Create Profile命令创建一个Profile,用它来实现对数据库资源的限制使用,如果把该profile分配给用户,则该用户所能使用的数据...
RHEL4-U2-i386-AS_Oracle10.2.0.1
--Install the following packages:# From RedHat AS4 Disk 2cd /media/cdrom/RedHat/RPMSrpm -Uvh setarch-1*rpm -Uvh compat-libstdc++-33-3*rpm -Uvh make-3*rpm -Uvh glibc-2*# From RedHat AS4 Disk 3cd /med...
RHEL3-U4-i386-AS_Oracle9.2.0.4
Red Hat Linux AS3 下安装 ORACLE9.2.0.4 --------------------------------------------------------------------------------Installing Oracle 9iR2 on Red Hat Enterprise Linux Advanced Server 3 (RHEL 3) R...
RHEL4-ASU2-i386上安装oracle9204
1) 安装以下包和补丁:Operating System RequirementsBefore installing Oracle9irelease 2 on Red Hat Enterprise Linux 4, you must perform. the following steps:Download and Install Requ...
Shared pool深入分析及性能调整
http://space.itpub.net/batch.viewlink.php?itemid=200458http://space.itpub.net/batch.viewlink.php?itemid=200460http://tech.it168.com/db/o/2007-07-13/200707131148906.shtml