码迷,mamicode.com
首页 >  
搜索关键字:duplicate from active database    ( 76794个结果
欧几里德投影(Euclidean projection)
Euclidean projection on a setAn Euclidean projection of a point on a set is a point that achieves the smallest Euclidean distance from to the set. ...
分类:其他好文   时间:2014-05-16 20:08:59    阅读次数:1697
调优3(share pool 调整)
第三章 share pool 调整1、sga 组成部分1)database buffer2)redolog buffer3)share pool :共享池,存放最近最常使用的sql和plsql语句及解析计划和数据字典信息---library cache: 存放最近最常使用的sql及plsql 语句....
分类:其他好文   时间:2014-05-16 19:08:16    阅读次数:489
oracle 11g 安装及netca,dbca乱码之解决
在中文Linux下安装Oracle 11g,运行runInstaller后默认会出现乱码,解决办法如下:1、准备字体zysong.ttf,点击下载,解压下载到的fallback2、使用归档管理器打开database/stage/Components/oracle.jdk/1.5.0.17.0/1/D...
分类:数据库   时间:2014-05-16 18:56:56    阅读次数:453
相同表的创建
create table OA_WF_NODETEMP as select * from oa_wf_node where 1=2
分类:其他好文   时间:2014-05-16 18:55:53    阅读次数:202
oracle 查某一列有重复值的记录
-- 查找重复记录select names,num from test where rowid != (select max(rowid) from test b where b.names = test.names and b.num = test.num)或者使用select names,n.....
分类:数据库   时间:2014-05-16 18:51:53    阅读次数:278
oracle 添加序号
select rownum from table
分类:数据库   时间:2014-05-14 09:21:05    阅读次数:339
手动释放linux内存和缓存
/proc/sys/vm/drop_caches(since Linux 2.6.16)Writing to this file causes the kernel to drop clean caches,dentries and inodes from memory, causing that ...
分类:系统相关   时间:2014-05-14 08:54:16    阅读次数:331
如何修改AWR的retention,interval
检查AWR当前设置:SQL> select * from dba_hist_wr_control; DBID SNAP_INTERVAL RETENTION TOPNSQL---------- ------------------------- ------------------------- -...
分类:其他好文   时间:2014-05-14 08:45:07    阅读次数:374
oracle 11g 安装及netca,dbca乱码之解决
在中文Linux下安装Oracle 11g,运行runInstaller后默认会出现乱码,解决办法如下:1、准备字体zysong.ttf,点击下载,解压下载到的fallback2、使用归档管理器打开database/stage/Components/oracle.jdk/1.5.0.17.0/1/D...
分类:数据库   时间:2014-05-14 08:11:15    阅读次数:469
redis 过期时间
memcached 和 redis 的set命令都有expire参数,可以设置key的过期时间。但是redis是一个可以对数据持久化的key-value database,它的key过期策略还是和memcached有所不同的。梳理,整理如下:redis通过expire命令来设置key的过期时间。语法...
分类:其他好文   时间:2014-05-14 07:09:41    阅读次数:242
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!