免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2503 | 回复: 8
打印 上一主题 下一主题

如何将小表放入keep池中 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-08-01 18:01 |只看该作者 |倒序浏览
如上

论坛徽章:
0
2 [报告]
发表于 2003-08-01 19:06 |只看该作者

如何将小表放入keep池中

我自己顶

论坛徽章:
0
3 [报告]
发表于 2003-08-01 19:51 |只看该作者

如何将小表放入keep池中

倒      不知道就不要乱说

论坛徽章:
0
4 [报告]
发表于 2003-08-01 19:53 |只看该作者

如何将小表放入keep池中

看看DBMS_SHARED_POOL PACKAGE 的用法

论坛徽章:
0
5 [报告]
发表于 2003-08-01 19:55 |只看该作者

如何将小表放入keep池中

KEEP Procedure
This procedure keeps an object in the shared pool. Once an object has been kept in
the shared pool, it is not subject to aging out of the pool. This may be useful for
frequently used large objects. When large objects are brought into the shared pool,
several objects may need to be aged out to create a contiguous area large enough.
Syntax
DBMS_SHARED_POOL.KEEP (
name VARCHAR2,
flag CHAR DEFAULT ’P’);

论坛徽章:
0
6 [报告]
发表于 2003-08-01 19:56 |只看该作者

如何将小表放入keep池中

能否讲完全些呢

论坛徽章:
0
7 [报告]
发表于 2003-08-01 21:05 |只看该作者

如何将小表放入keep池中

KEEP Procedure
This procedure keeps an object in the shared pool. Once an object has been kept in
the shared pool, it is not subject to aging out of the pool. This may be useful for
frequently used large objects. When large objects are brought into the shared pool,
several objects may need to be aged out to create a contiguous area large enough.
Syntax
DBMS_SHARED_POOL.KEEP (
name VARCHAR2,
flag CHAR DEFAULT ’P’);


这段话,我倒是看过,可是有问题
我用DBMS_SHARED_POOL.KEEP(...),SQL*plus说找不到,不知道是什么原因

大哥,能给我一段测试代码吗?将一个指定的表,插入一些数据,放入keep池中,读取数据


  1. create table testKeep(OID number);
  2. begin
  3. insert into testKeep(OID) values(1);
  4. insert into testKeep(OID) values(2);
  5. insert into testKeep(OID) values(3);
  6. insert into testKeep(OID) values(4);
  7. insert into testKeep(OID) values(5);
  8. end;
复制代码

如何放入keep池中了??

论坛徽章:
0
8 [报告]
发表于 2003-08-01 21:13 |只看该作者

如何将小表放入keep池中

alter table xxx storage(buffer_pool_keep):

论坛徽章:
0
9 [报告]
发表于 2003-08-01 22:11 |只看该作者

如何将小表放入keep池中

alter table xxx storage(buffer_pool_keep);


我搞懂了,谢谢txfy

不过,好像是alter table xxx storage(buffer_pool keep);
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP