Problem Management


Problem management seeks to identify the underlying causes of incidents in an IT infrastructure and to remove those causes. The problem management process addresses the causes of incidents reactively and proactively.

  1. Reactive problem management--problem control activities:

    • What mechanisms currently exist in your organization to respond to reported incidents and to find their causes?
    • How are problems currently identified and recorded? Are records of identified problems available to everyone who needs them?
    • How is responsibility for investigating problems allocated?
    • When a cause and a workaround for a problem are discovered, how is that information cascaded to the rest of the IT department?
    • How is information about causes and workarounds shared with the rest of the company?
  2. Reactive problem management--error control activities:

    • What mechanisms or processes are used to determine the cost of resolving a known error?
    • How are the benefits of resolving a known error measured? Who holds responsibility for determining which known errors will be resolved?
    • How are those decisions made?
    • What mechanisms are used to ensure that decisions to fix known errors are carried out correctly?
    • Under what conditions are known errors considered closed?
  3. Proactive problem management:

    • What methods are used to identify potential problems in the infrastructure?
    • What criteria are used to determine which components of the infrastructure should be examined for potential problems?
    • What steps are taken to analyze trends in reported problems?

Change Management


Change management is an IT service management process that controls the way changes are introduced in an IT environment. Careful management ensures changes will be more orderly and less disruptive. Companies that implement change management minimize the negative impact of IT changes on the quality of service delivered to users of the company's information systems.

  1. Change request and approval:

    • What mechanisms currently exist in your organization to propose changes to the IT infrastructure?
    • What person or group holds responsibility for evaluating proposed changes?
    • What criteria are used to accept or reject proposed changes?
    • How do the criteria for accepting or rejecting proposed changes relate to the business goals of the company?
    • How are proposed changes scheduled?
    • How is the schedule of changes communicated to those who must execute them?
    • How is the schedule communicated to the rest of the company?
  2. Change review:

    • What mechanisms exist to review whether completed changes were successful?
    • What criteria are used to gauge the success of a change?
    • Under what conditions is a planned change considered closed?
  3. Step of Change Management

    • Filter change requests
    • Assess the impact of changes
    • Authorize changes
    • Review changes
    • Close requests for changes
  4. Output of Change Management

    • Change Management Reports
    • Request for Change
    • Change advisory board decisions
    • Forward schedule of changes
  5. Responsibilities of Change Manager

    • Receive and filters requests for change
    • Coordinate the activities of the change advisory board
    • Issues and maintains the forward schedule of changes
    • Closes RFCs
  6. Critical factors for the success of change management
    • Appropriate tools
    • Supporting processes
    • Management commitment

Training - Problem and Change Management的更多相关文章

  1. Using Change Management and Change Control Within a Project

    In any project, change is inevitable whether it comes from within the project or from external sourc ...

  2. POJ 3100 Root of the Problem || 1004 Financial Management 洪水!!!

    水两发去建模,晚饭吃跟没吃似的,吃完没感觉啊. ---------------------------分割线"水过....."--------------------------- ...

  3. SAP Change Request Management (ChaRM)基础教程

    本文介绍了SAP Solution Manager中的变更请求管理工具(Change Request Management,以下简称ChaRM ). 最近打算写个上线前请求号检查工具,为此需要了解相关 ...

  4. 《Continuous Delivery》 Notes 2: Configuration Management

    What is Configuration Management? Configuration Management refers to the process by which all artifa ...

  5. Project Management Process

    Project Management ProcessDescription .............................................................. ...

  6. Android内存管理(1)WRANGLING DALVIK: MEMORY MANAGEMENT IN ANDROID PART 1

    from : http://www.raizlabs.com/dev/2014/03/wrangling-dalvik-memory-management-in-android-part-1-of-2 ...

  7. English Training Material - 03

    Cross-cultural understanding (2) 1 The following text is about cultural diversity. Read it through o ...

  8. Greedy Change

    Greedy Change time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...

  9. FZU oj 2277 Change 树状数组+dfs序

    Problem 2277 Change Time Limit: 2000 mSec    Memory Limit : 262144 KB  Problem Description There is ...

随机推荐

  1. python数据操作方法封装

    工作中经常会用到数据的插叙.单条数据插入和批量数据插入,以下是本人封装的一个类,推荐给各位: #!/usr/bin/env python # -*- coding:utf-8 -*- # Author ...

  2. ListView优化为何ViewHolder用static类(转载)

    如果有人还不了解ViewHolder为什么可以起到优化作用,我这边再做下简单说明:Android的findViewById动作是比较耗时的,需要遍历布局的树形结构,才能找到相应的视图.所以如果想在这一 ...

  3. 深入理解PHP内核(十)变量及数据类型-类型提示的实现

    原文链接:http://www.orlion.ga/253/ PHP是弱类型语言,向方法传递参数时也并不严格检查数据类型.不过有时候需要判断传递到方法中的参数,为此PHP中提供了一些函数来判断数据的类 ...

  4. 数据可视化(7)--D3基础

    一直想写写D3,觉得D3真心比较强大,基本上你能想出来的图表都能绘制出来,只不过使用起来比前几个要稍麻烦一点. 正好最近读完了<数据可视化实战>,将关于D3的知识梳理了一遍,写这篇博客记录 ...

  5. 在Mysql中Using filesort代表什么意思?

    在Mysql中使用explain来查看sql执行信息时,经常会看到Using filesort.那么Using filesort在MySQL中代表什么意思呢? 有人会说是外部排序,其实是不对或者不准确 ...

  6. js单击输入框后弹出提示信息效果

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  7. 2.Visual FoxPro内存变量显示和清除命令

    一.内存变量的显示相关命令:   1. LIST MEMORY[LIKE<通配符>][TO PRINTER |TO FILE<文件名>] 2. DISPLAY MEMORY[L ...

  8. idea快捷键总结

    使用好快捷键会快很多,这里我慢慢添加我用习惯的快捷键.参考 1.alt+enter 这个几乎万能,有错误提示的时候将光标移动到错误处,然后alt+enter,会给出建议方案:写完一个表达式后,alt+ ...

  9. Kibana源码剖析 —— savedSearch从读取到跳转

    持久化对象 Kibana中可以查询到很多保存的对象,他们都存储在es中一个叫做.kibana的索引中. 搜索 存储在type为search中; 图表 存储在type为visualization中: 仪 ...

  10. elasticsearch 文档

    elasticsearch 文档 文档格式 索引中最基本的单元叫做文档 document. 在es中文档的示例如下: { "_index": "questions&quo ...