`

(3)Manage a Oracle Instance

 
阅读更多
  • Init Parameter Start Sequence
    spfile<sid>.ora--------spfile.ora-----------init<sid>
    select * from v$system_parameter    查看所有参数
    alter system set name=value scope=memory(spfile,both)
    desc v$system_parameter
    ISSES_MODIFIABLE(true,false)    ISSYS_MODIFIABLE(immediate,deferred,none)
  • Create spfile
    create spfile from pfile
  • Oracle Managed File (OMF)
    DB_CREATE_FILE_DEST: for data files
    DB_CREATE_ONLINE_LOG_DEST_N: redo, control files N maximun=5
    drop tablespace xxx including contents and datafiles
  • Startup
    startup [nomount|mount|open]
                pfile=
                restrict
                recovery
                force
    alter database db01 mount
    alter database db01 open read only
    alter database open read only
    alter system enable restricted session
    grant restricted session to xxx
    alter system disable restricted session
  • shutdown
    Normal       transactional        immediate        abort
  • Diagnostic Files
    alterSID.log                        (bdump)                        BACKGROUND_DUMP_DEST
    Background trace files       (bdump)                        BACKGROUND_DUMP_DEST
    User trace files                   (udump)                        缺省是关闭的 USER_DUMP_DEST    MAX_DUMP_FILE_SIZE(default 10M)
    sql_trace                            boolean     FALSE
    trace_enabled                    boolean     TRUE

          Session level: dbms_system.SET_SQL_TRACE_IN_SESSION
          (1)execute DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION(7, 1304, true);
         (2)SELECT t.SID,t.SERIAL# FROM v$session t 

分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    AIX,Linux,Windows Oracle监控Agent部署手册

    - 通过“开始”菜单中的 “IBMTivoliMonitoring” &gt; “Manage Tivoli Monitoring Services” 进行配置。 - 选择 “Monitoring Agent for Oracle Database Extended”,并点击右键选择 “高级” &gt; “配置高级”。 -...

    1Z0-811 Exam Guide to Have a Cakewalk in Oracle Java SE Certific

    The 1Z0-811 exam is a significant step towards achieving Oracle Java SE certification. By following a structured preparation plan, utilizing resources like DBExam.com, and focusing on key topics such ...

    ORACLE10G 新特性详解(中文)

    3. 实例恢复(Instance Recovery):Oracle 10G改进了实例恢复机制,使得在数据库实例失败后能更快地恢复服务,降低了系统停机时间。 4. 高可用性(High Availability):Oracle Real Application Clusters (RAC)是...

    java英文笔试

    Oracle 9i introduced several advancements over its predecessor, such as the ability to manage large amounts of unstructured data, improved scalability, and enhanced integration with other ...

    BIEE安装与配置.pdf

    2. **instanceconfig.xml**:位于`~\OracleBIData\web\config`目录下,主要用于配置前台报表展现目录。 - `&lt;CatalogPath&gt;D:/OracleBIData/web/catalog/XXXX&lt;/CatalogPath&gt;`:指定报表展现目录。 #### 五、安全配置...

    jira-manual.pdf

    It's crucial to plan accordingly to ensure smooth operation and scalability as your JIRA instance grows. 2.2. Installing JIRA The installation process starts by downloading JIRA from the official ...

    BIEE 安装与配置.pd

    BIEE(Business Intelligence Enterprise Edition),是Oracle公司提供的一款强大的商业智能工具,用于帮助企业用户进行数据分析、报告制作以及仪表板展示等功能。本文档旨在详细介绍BIEE的安装与配置流程,帮助读者...

    Arcgis server 9.3 安装过程

    3. **解决端口冲突**:如果Oracle或Apache占用80端口,需修改httpd.conf文件中的端口号至8099,避免与IIS冲突。 4. **执行安装向导**:按照安装向导提示,依次完成各步骤,包括设置账户权限、目录路径及注册选项等。...

    计算机专业英语数据库PPT学习教案.pptx

    - **Instance**: 实例是Oracle数据库运行时的内存结构和后台进程的集合,与数据库物理文件相关联。 - **State**: 在数据库上下文中,状态可能指的是数据库的运行状态,如在线、离线或只读。 - **Constant**: 常量...

    计算机专业英语数据库PPT课件.pptx

    7. **实例(instance)**:在Oracle数据库中,实例是内存结构和后台进程的集合,与数据库文件一起工作,提供对数据的访问。 8. **状态(state)**:在数据库管理中,状态通常指的是数据库或其组件(如表、索引)的当前...

    django-postgresql 数据库驱动

    Django支持多种数据库,包括MySQL、SQLite、Oracle和PostgreSQL。要在Django项目中使用PostgreSQL,首先需要在`settings.py`文件中的`DATABASES`配置中指定数据库引擎为`'django.db.backends.postgresql'`或`'django...

Global site tag (gtag.js) - Google Analytics