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

朝阳区手机网站设计服务seo属于什么职位类型

朝阳区手机网站设计服务,seo属于什么职位类型,中国新闻社是事业编制吗,深圳做分销商城网站可以通过dba_hist_wr_control查看当前的配置情况,当前awr为每1小时做一次数据快照,保留时间为7天。SYSPENG SQLgt; select *可以通过dba_hist_wr_control查看当前的配置情况,当前awr为每1小时做一次数据快照,保留时间为7天。SYSPE…

可以通过dba_hist_wr_control查看当前的配置情况,当前awr为每1小时做一次数据快照,保留时间为7天。SYS@PENG SQLgt; select *

可以通过dba_hist_wr_control查看当前的配置情况,当前awr为每1小时做一次数据快照,保留时间为7天。

SYS@PENG SQL> select * from dba_hist_wr_control;

DBID SNAP_INTERVAL RETENTION TOPNSQL

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

620748923 +00000 01:00:00.0 +00007 00:00:00.0 DEFAULT

Elapsed: 00:00:00.16

SYS@PENG SQL>

调整配置数据:

SYS@PENG SQL> execute dbms_workload_repository.modify_snapshot_settings(interval=>30,retention=>14000);

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.17

再查看修改后的效果:

SYS@PENG SQL> select * from dba_hist_wr_control;

DBID SNAP_INTERVAL RETENTION TOPNSQL

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

620748923 +00000 00:30:00.0 +00009 17:20:00.0 DEFAULT

Elapsed: 00:00:00.02

SYS@PENG SQL>

除自动建立快照以外,还可以在需要的时候手工创建快照,数据和自动创建的一样使用。

SYS@PENG SQL> select dbms_workload_repository.create_snapshot() from dual;

DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT()

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

68

Elapsed: 00:00:01.00

SYS@PENG SQL> select dbms_workload_repository.create_snapshot() from dual;

DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT()

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

69

Elapsed: 00:00:00.60

SYS@PENG SQL>

[Oracle@localhost admin]$ pwd

/oracle/product/10g/rdbms/admin

这里存放了很多sql脚本,有时间可以打开阅读,对提高水平有作用。这里我们用到awrrpt.sql。

可以先打开看一下内容。

[oracle@localhost admin]$ cat awrrpt.sql

Rem $Header: awrrpt.sql 24-oct-2003.12:04:53 pbelknap Exp $

Rem

Rem awrrpt.sql

Rem

Rem Copyright (c) 1999, 2003, Oracle Corporation. All rights reserved.

Rem

Rem NAME

Rem awrrpt.sql

Rem

Rem DESCRIPTION

Rem This script defaults the dbid and instance number to that of the

Rem current instance connected-to, then calls awrrpti.sql to produce

Rem the Workload Repository report.

Rem

Rem NOTES

Rem Run as select_catalog privileges.

Rem This report is based on the Statspack report.

Rem

Rem If you want to use this script in an non-interactive fashion,

Rem see the 'customer-customizable report settings' section in

Rem awrrpti.sql

Rem

Rem MODIFIED (MM/DD/YY)

Rem pbelknap 10/24/03 - swrfrpt to awrrpt

Rem pbelknap 10/14/03 - moving params to rpti

Rem pbelknap 10/02/03 - adding non-interactive mode cmnts

Rem mlfeng 09/10/03 - heading on

Rem aime 04/25/03 - aime_going_to_main

Rem mlfeng 01/27/03 - mlfeng_swrf_reporting

Rem mlfeng 01/13/03 - Update comments

Rem mlfeng 07/08/02 - swrf flushing

Rem mlfeng 06/12/02 - Created

Rem

--

-- Get the current database/instance information - this will be used

-- later in the report along with bid, eid to lookup snapshots

set echo off heading on underline on;

column inst_num heading "Inst Num" new_value inst_num format 99999;

column inst_name heading "Instance" new_value inst_name format a12;

column db_name heading "DB Name" new_value db_name format a12;

column dbid heading "DB Id" new_value dbid format 9999999999 just c;

prompt

prompt Current Instance

prompt ~~~~~~~~~~~~~~~~

select d.dbid dbid

, d.name db_name

, i.instance_number inst_num

, i.instance_name inst_name

from v$database d,

v$instance i;

@@awrrpti

undefine num_days;

undefine report_type;

undefine report_name;

undefine begin_snap;

undefine end_snap;

--

-- End of file

其中一段的结果为

select d.dbid dbid

, d.name db_name

, i.instance_number inst_num

, i.instance_name inst_name

from v$database d,

v$instance i;

DBID DB_NAME INST_NUM INST_NAME

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

620748923 PENG 1 peng

然后调用了awrrpti.sql,,其内容较多,以后找机会在专门分析。

这里我们直接执行awrrpt.sql。

SYS@PENG SQL> @/oracle/product/10g/rdbms/admin/awrrpt.sql

Current Instance

~~~~~~~~~~~~~~~~

DB Id DB Name Inst Num Instance

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

620748923 PENG 1 peng

Specify the Report Type

~~~~~~~~~~~~~~~~~~~~~~~

Would you like an HTML report, or a plain text report?

Enter 'html' for an HTML report, or 'text' for plain text

Defaults to 'html'

Enter value for report_type: text

Type Specified: text

Instances in this Workload Repository schema

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

DB Id Inst Num DB Name Instance Host

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

* 620748923 1 PENG peng localhost

Using 620748923 for database Id

Using 1 for instance number

Specify the number of days of snapshots to choose from

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Entering the number of days (n) will result in the most recent

(n) days of snapshots being listed. Pressing without

specifying a number lists all completed snapshots.

Enter value for num_days: 2

Listing the last 2 days of Completed Snapshots

Snap

Instance DB Name Snap Id Snap Started Level

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

peng PENG 58 12 Dec 2010 01:11 1

59 12 Dec 2010 02:01 1

60 12 Dec 2010 03:01 1

61 12 Dec 2010 04:02 1

62 12 Dec 2010 05:02 1

63 13 Dec 2010 01:00 1

64 13 Dec 2010 02:00 1

65 13 Dec 2010 03:02 1

66 13 Dec 2010 04:01 1

67 13 Dec 2010 04:54 1

68 13 Dec 2010 04:59 1

69 13 Dec 2010 05:00 1

70 13 Dec 2010 05:30 1

Specify the Begin and End Snapshot Ids

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Enter value for begin_snap: 64

Begin Snapshot Id specified: 64

Enter value for end_snap: 70

End Snapshot Id specified: 70

Specify the Report Name

~~~~~~~~~~~~~~~~~~~~~~~

The default report file name is awrrpt_1_64_70.txt. To use this name,

press to continue, otherwise enter an alternative.

Enter value for report_name: /tmp/awrrpt_1_64_70.txt

生成文件存放在指定的/tmp下。

文件包含一下内容:

Report Summary

Wait Events Statistics

SQL Statistics

Instance Activity Statistics

IO Stats

Buffer Pool Statistics

Advisory Statistics

Wait Statistics

Undo Statistics

Latch Statistics

Segment Statistics

Dictionary Cache Statistics

Library Cache Statistics

Memory Statistics

Streams Statistics

Resource Limit Statistics

init.ora Parameters

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

http://www.lbrq.cn/news/2559151.html

相关文章:

  • 全套做网站网络营销策划书800字
  • 常州天启建设公司网站北京优化网站公司
  • 自已买域名做网站要多少钱网络seo推广
  • 做外贸批发的网站有哪些百度账号找回
  • 检查网站收录问题谷歌seo顾问
  • 用php和mysql做网站100大看免费行情的软件
  • .net做的网站打开速度缓慢北京百度竞价
  • 河北大型网站建设trinseo公司
  • fineui 如何做网站小说百度搜索风云榜
  • 管理网站制作福州seo排名优化
  • 长春专业网站建设公司排名可以免费推广的平台
  • 广安网站建设成都网站seo诊断
  • 做维修家具广告在哪个网站好宁波seo入门教程
  • 网站整站下载器下载utf8网页乱码seo学徒是做什么
  • 网站怎么做百度才会收录互联网推广方案怎么写
  • 高唐做网站推广免费网站可以下载
  • 做流量的网站应该注意什么国外免费推广网站有哪些
  • 线上网站开发系统流程在线生成网站
  • 新疆知名的网站建设公司厦门seo培训学校
  • 如何制作自己的网站 可放广告云搜索app
  • 公司内部网站设计网站建设制作公司
  • 上海湖南网站建设腾讯广告推广平台
  • 可以建设个人网站seo专业技术培训
  • 如何对网站进行爬虫宜兴网站建设
  • 安卓app开发环境seo合作代理
  • 建设网站的知识旺道seo工具
  • 产品效果图怎么做出来的网站搜索优化排名
  • wordpress如何增加商品外贸seo
  • 石家庄网站公司推广关键词如何优化
  • 广西桂林天气预报15天查询seo排名赚下载
  • 在 AKS 中运行 Azure DevOps 自托管代理-2
  • 李宏毅深度学习教程 第4-5章 CNN卷积神经网络+RNN循环神经网络
  • 技术信任革命:区块链重构信用机制全解析
  • flutter release调试插件
  • 用 AI 解析采购订单,从上传到自动生成 Draft 订单全流程实战
  • AWS云安全审计终极实战指南:构建自动化安全防线