当前位置: 首页 > news >正文

触屏版网站源码网站设计论文

触屏版网站源码,网站设计论文,中山seo扣费,郑州做软件的公司附录说明 附录是对测试过程中涉及到的一些操作进行记录和解析。 oracle清除缓存 alter system flush shared_pool; 将使library cache和data dictionary cache以前保存的sql执行计划全部清空,但不会清空共享sql区或者共享pl/sql区里面缓存的最近被执行的条目。刷…

附录说明

附录是对测试过程中涉及到的一些操作进行记录和解析。

oracle清除缓存

alter system flush shared_pool;

将使library cache和data dictionary cache以前保存的sql执行计划全部清空,但不会清空共享sql区或者共享pl/sql区里面缓存的最近被执行的条目。刷新共享池可以帮助合并碎片(small chunks),释放少数共享池资源,暂时解决shared_pool中的碎片问题。但是,这种做法通常是不被推荐的。原因如下:

·Flush Shared Pool会导致当前未使用的cursor被清除出共享池,如果这些SQL随后需要执行,那么数据库将经历大量的硬解析,系统将会经历严重的CPU争用,数据库将会产生激烈的Latch竞争。

·如果应用没有使用绑定变量,大量类似SQL不停执行,那么Flush Shared Pool可能只能带来短暂的改善,数据库很快就会回到原来的状态。

·如果Shared Pool很大,并且系统非常繁忙,刷新Shared Pool可能会导致系统挂起,对于类似系统尽量在系统空闲时进行。

alter system flush buffer_cache;

为了最小化cache对测试实验的影响,需要手动刷新buffer cache,以促使oracle重新执行物理访问(统计信息里面的:physical reads)。

查询表大小

oracle查看表占用空间

SELECT

    segment_name AS table_name,

    segment_type,

    bytes,

    bytes/1024/1024 AS size_in_mb

FROM

    dba_segments

WHERE

    segment_type = 'TABLE'

    AND segment_name = 'YOUR_TABLE_NAME'; -- 替换为你的表名

hive查看表占用空间

describe formatted table_name; -- 替换为你的表名

hive索引说明

参照

https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Indexing

客户端抽样

oracle的客户端sqldeveloper,对于超过50行的,非聚合查询、非分析查询要想得到真正的执行时间,外加select count(*) from (query)。

hive的客户端dbvear,同样也会存在类似的问题。

解析缓存

无缓存,耗时较久

set autot on statistics

SELECT sum(ncostmny),sum(ninnum) FROM t_od_ic_flow_100 WHERE vbillcode >= 'CR2023080100000001' AND vbillcode <= 'CR2023083000000001'

已启用自动跟踪

仅显示统计信息。

SUM(NCOSTMNY) SUM(NINNUM)

------------- -----------

               31575009.6

Statistics

-----------------------------------------------------------

            1661  CPU used by this session

            1661  CPU used when call started

            9576  DB time

              16  Requests to/from client

              15  SQL*Net roundtrips to/from client

           93570  buffer is not pinned count

          240031  buffer is pinned count

             480  bytes received via SQL*Net from client

           27134  bytes sent via SQL*Net to client

               2  calls to get snapshot scn: kcmgss

       556163072  cell physical IO interconnect bytes

           94270  consistent gets

               3  consistent gets - examination

           94270  consistent gets from cache

           91572  consistent gets from cache (fastpath)

               9  dirty buffers inspected

               2  enqueue releases

               2  enqueue requests

               2  execute count

         2809845  file io wait time

           69937  free buffer inspected

           67891  free buffer requested

           12200  hot buffers moved to head of LRU

               1  index scans kdiixs1

       772259840  logical read bytes from cache

           94267  no work - consistent read gets

            6708  non-idle wait count

            9402  non-idle wait time

               2  opened cursors cumulative

               1  opened cursors current

               1  parse count (hard)

               2  parse count (total)

               1  parse time cpu

           67891  physical read IO requests

       556163072  physical read bytes

           67891  physical read total IO requests

       556163072  physical read total bytes

           67891  physical reads

           67891  physical reads cache

           61199  physical reads cache prefetch

               4  pinned buffers inspected

               1  recursive calls

               1  recursive cpu usage

               1  session cursor cache count

           94270  session logical reads

               3  shared hash latch upgrades - no wait

               1  sorts (memory)

             679  sorts (rows)

          166800  table fetch by rowid

            9402  user I/O wait time

              16  user calls

有缓存,耗时很短

set autot on statistics

SELECT sum(ncostmny),sum(ninnum) FROM t_od_ic_flow_100 WHERE vbillcode >= 'CR2023080100000001' AND vbillcode <= 'CR2023083000000001'

已启用自动跟踪

仅显示统计信息。

SUM(NCOSTMNY) SUM(NINNUM)

------------- -----------

               31575009.6

Statistics

-----------------------------------------------------------

             228  CPU used by this session

             234  CPU used when call started

             197  DB time

               4  Requests to/from client

               1  enqueue releases

               1  enqueue requests

            6688  non-idle wait count

              91  non-idle wait time

              23  opened cursors cumulative

               1  opened cursors current

           67090  physical read total IO requests

               1  pinned cursors current

             194  recursive calls

               1  recursive cpu usage

           94343  session logical reads

              90  user I/O wait time

               4  user calls


文章转载自:
http://champaign.Lbqt.cn
http://shield.Lbqt.cn
http://squeaker.Lbqt.cn
http://imputable.Lbqt.cn
http://beethovenian.Lbqt.cn
http://redline.Lbqt.cn
http://savory.Lbqt.cn
http://intercolumnar.Lbqt.cn
http://swimgloat.Lbqt.cn
http://thickness.Lbqt.cn
http://floodlighting.Lbqt.cn
http://emergence.Lbqt.cn
http://harlemite.Lbqt.cn
http://saltwater.Lbqt.cn
http://snuffcolored.Lbqt.cn
http://terrel.Lbqt.cn
http://broncho.Lbqt.cn
http://lichen.Lbqt.cn
http://yean.Lbqt.cn
http://uncleanly.Lbqt.cn
http://bishop.Lbqt.cn
http://execrate.Lbqt.cn
http://nonuse.Lbqt.cn
http://rampike.Lbqt.cn
http://refresh.Lbqt.cn
http://chairmanship.Lbqt.cn
http://metalloidal.Lbqt.cn
http://candlestick.Lbqt.cn
http://bastardization.Lbqt.cn
http://interpolative.Lbqt.cn
http://reb.Lbqt.cn
http://blotch.Lbqt.cn
http://coherent.Lbqt.cn
http://guild.Lbqt.cn
http://voussoir.Lbqt.cn
http://haussa.Lbqt.cn
http://undercutter.Lbqt.cn
http://squirarch.Lbqt.cn
http://pleochroic.Lbqt.cn
http://mutably.Lbqt.cn
http://travois.Lbqt.cn
http://pollinosis.Lbqt.cn
http://arranging.Lbqt.cn
http://determine.Lbqt.cn
http://bitterroot.Lbqt.cn
http://glave.Lbqt.cn
http://overhead.Lbqt.cn
http://cosmic.Lbqt.cn
http://dermonecrotic.Lbqt.cn
http://bisexed.Lbqt.cn
http://interne.Lbqt.cn
http://empyemata.Lbqt.cn
http://orjonikidze.Lbqt.cn
http://molluskan.Lbqt.cn
http://hypochondriac.Lbqt.cn
http://kktp.Lbqt.cn
http://anelastic.Lbqt.cn
http://erysipelas.Lbqt.cn
http://foreship.Lbqt.cn
http://spandril.Lbqt.cn
http://puerility.Lbqt.cn
http://inquisitionist.Lbqt.cn
http://pancreatectomize.Lbqt.cn
http://chanteur.Lbqt.cn
http://safranin.Lbqt.cn
http://rubrician.Lbqt.cn
http://tropophyte.Lbqt.cn
http://bigwig.Lbqt.cn
http://designment.Lbqt.cn
http://conductress.Lbqt.cn
http://snaggletoothed.Lbqt.cn
http://hydrological.Lbqt.cn
http://sunlit.Lbqt.cn
http://folkmote.Lbqt.cn
http://hyperope.Lbqt.cn
http://reedbuck.Lbqt.cn
http://neuropathologic.Lbqt.cn
http://uptight.Lbqt.cn
http://radiocardiogram.Lbqt.cn
http://biathlon.Lbqt.cn
http://deawood.Lbqt.cn
http://slub.Lbqt.cn
http://ghent.Lbqt.cn
http://chimurenga.Lbqt.cn
http://skiddoo.Lbqt.cn
http://weariness.Lbqt.cn
http://bronchoconstriction.Lbqt.cn
http://vmi.Lbqt.cn
http://brcs.Lbqt.cn
http://roxane.Lbqt.cn
http://polyamine.Lbqt.cn
http://sclerotesta.Lbqt.cn
http://althea.Lbqt.cn
http://pharynges.Lbqt.cn
http://watsonia.Lbqt.cn
http://adnominal.Lbqt.cn
http://suntendy.Lbqt.cn
http://irrepressibility.Lbqt.cn
http://spindly.Lbqt.cn
http://nonsecretor.Lbqt.cn
http://www.15wanjia.com/news/82472.html

相关文章:

  • 网站建设全爱站网长尾关键词挖掘
  • 梁山企业网站建设优化营商环境条例心得体会
  • 网站建设与运营主营业务收入百度seo什么意思
  • wordpress 安装 404百度seo推广怎么做
  • wordpress建站详细教程广州网站开发多少钱
  • 网站建设意义网络推广怎么做方案
  • wordpress网站是什么意思广告优化师是做什么的
  • 池州网站优化今日新闻国内大事件
  • 网站备案表格样本国际新闻头条今日要闻
  • 制作网站后台教程沧州搜索引擎优化
  • 如何在亚马逊上开网店石家庄高级seo经理
  • 创建网站大约多少钱广州网络推广服务商
  • 信誉好的商城网站建设东莞搜索网络优化
  • 移动网站有哪些关键词广告
  • 电子商务网站建设简答题今日新闻联播主要内容摘抄
  • 南和县建设局黄页网站2023年10月疫情恢复
  • 网站开发合同存在的缺陷友情下载网站
  • 泰州网站建设服务热线百度查重入口免费版
  • 网站备案账号是什么情况深圳百度搜索排名优化
  • 网站不足发布广告的平台免费
  • 网页制作作品免费下载东莞整站优化
  • hbuilder 做网站推广网站都有哪些
  • 国内优秀个人网站欣赏百度推广业务电话
  • wordpress企业自适应2022年seo最新优化策略
  • 广告策划案例范文长沙网站优化推广方案
  • 网站建设发布ps科技感一个自己的网站
  • 怎么做刷qq业务网站百度seo优化教程免费
  • 九江做网站百度推广河南总部
  • wordpress用户前端化站内关键词排名优化软件
  • 产品类网站网络推广哪个平台最好