摘要: oracle 8i中db_block_buffer的大小决定buffer cache的大小oracle 9i&10g中由db_cache_size的大小来决定因为内存空间是有限的,所以oracle采用LRU算法来调度谁来使用内存但是因为许多的批处理操作(如全表扫描)可能会导致buffer cache的刷新,这会导致将经常使用的数据挤出buffer cacheoracle在改进LRU算法的同时,采用了另一技术:就是buffer cache的多缓冲池做法oracle的db_buffer_pool由三部分组成:buffer_pool_defualtbuffer_pool_keepbuffer 阅读全文
posted @ 2013-08-27 12:11 taowang2016 阅读(404) 评论(0) 推荐(0) 编辑
摘要: dbms_metadata包中的get_ddl函数--GET_DDL: Return the metadata for a single object as DDL.-- This interface is meant for casual browsing (e.g., from SQLPlus)-- vs. the programmatic OPEN / FETCH / CLOSE interfaces above.-- PARAMETERS:-- object_type - The type of object to be retrieved.-- name - Name of the 阅读全文
posted @ 2013-08-27 10:31 taowang2016 阅读(272) 评论(0) 推荐(0) 编辑