平台:oracle11g 错误表现: 1、使用工具链接数据库提示:ora-27102:out of memory 2、查看数据库错误日志 tail $ORACLE_BASE/diag/rdbms/db_name/sid/trace/alert_sid.log *** 2013-01-17 22:57 ...
分类:
其他好文 时间:
2020-07-04 23:00:10
阅读次数:
110
alter system set deferred_segment_creation=false; select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO' 处 ...
分类:
数据库 时间:
2020-07-01 20:14:12
阅读次数:
63
场景:windows2008 R2系统 ,往新安装的oracle11g数据库导入同事给的dmp文件到指定的新建的用户。 1、创建表空间 在导入dmp文件之前,先打开查看dmp文件的表空间名称(tablespace)。 如下图: 注:因为我一会要用plsql工具使用system超级管理员用户登录是创建 ...
分类:
数据库 时间:
2020-06-25 14:10:18
阅读次数:
97
系统日志文件 rsyslog主要是用来收集系统产生的各种日志,日志文件默认放在/var/log目录下。 常用日志 /var/log/boot.log 存储服务启动与停止信息 /var/log/dmesg 存储系统启动时显示在屏幕的内核信息,包含了系统中硬件状态的检查信息。 /var/log/mess ...
分类:
系统相关 时间:
2020-06-21 10:11:34
阅读次数:
111
oracle11g对linux的系统,软件的环境,内存,系统都要求, 这里我系统用的Linux dbserver.benet.com 2.6.32-431.el6.x86_64 也就是CentOS64位 内存 swap的空间一定要是物理内存的2倍以上 查看物理内存 grep MemTotal /pr ...
分类:
数据库 时间:
2020-06-03 20:09:43
阅读次数:
85
虚拟机选择网络选择桥接(无线网不打勾) 选择阿里云centos镜像站1、备份原有的CentOS-Base.repo到/etc/yum.repos.d/目录下,也可移动到自定义目录下mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS ...
分类:
系统相关 时间:
2020-05-24 16:47:23
阅读次数:
87
问题 [root@oracle11g rpm]# rpm -ivh cvuqdisk-1.0.9-1.rpm Preparing... ################################# [100%] ls: cannot access /usr/sbin/smartctl: No ...
分类:
其他好文 时间:
2020-05-13 10:24:34
阅读次数:
129
一、安装goldengate软件 1.1测试环境 OS: redhat 6 64bit DB: oracle 11.2.0.3 64bit 查看OS和DB版本 [oracle@redhat6 ~]$ uname -aLinux redhat6 2.6.32-131.0.15.el6.x86_64 # ...
分类:
数据库 时间:
2020-05-12 13:47:39
阅读次数:
72
拉取镜像 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 启动oracle镜像作为容器 docker run --restart=always -d -p 1521:1521 --name oracle11g regi ...
分类:
数据库 时间:
2020-05-02 21:14:34
阅读次数:
116
1、 关闭selinux 1.1 sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config 1.2 或者手动编辑 vi /etc/selinux/config将SELINUX=enforcing改为SELINUX=disab ...
分类:
数据库 时间:
2020-04-29 21:39:25
阅读次数:
99