Table of Contents
oracle 10g创建数据库实例错误
Home Database Mysql Tutorial 配置oracle 11g数据遇到dim

配置oracle 11g数据遇到dim

Jun 07, 2016 pm 03:50 PM
oracle data meet Configuration

配置oracle 11g数据遇到dim00014 orical无法打开windows nt服务控制管理器 安装环境windows7 oracle 安装完成后 需要配置建立全局实例 命令cmd - dbca 进入配置页面 经过12个步骤之后 配置完成 创建数据库时出现dim00014 orical无法打开windows nt服务控制管

配置oracle 11g数据遇到dim00014 orical无法打开windows nt服务控制管理器  


安装环境windows7

oracle 安装完成后 需要配置建立全局实例

命令cmd -> dbca

进入配置页面 经过12个步骤之后 配置完成 创建数据库时出现dim00014 orical无法打开windows nt服务控制管理器

需要以管理员权限运行

Runas /user:administrator  dbca

提示需要输入密码 安装时没有设置密码

切换账号运行  转到administrator下 就可以了


===================================================

提问:

oracle 10g创建数据库实例错误

DIM-00014:无法打开Windows NT服务控制管理器
O/S-Error:(OS5)拒绝访问

回答:
<pre class="brush:php;toolbar:false">今天起床突然发现oracle service启不来 
用oradim -startup -sid test得到DIM-00014 Cannot open the Windows NT Service Control Manager 
然后用oradim -delete -sid test去删除得到 
DIM-00010: System\CurrentControlSet\Services\OracleService does not exit  
O/S - Error <os2> the system cannot find the file specified.  
突然想到可能跟(操作系统的)权限有关系,进去<strong>windows的用户管理</strong>(win7下右键‘计算机’图标,选择‘管理’,跳出的‘计算机管理’界面上,选中‘本地用户和组’)一看,把登陆用户加入administrators组及ora_dba组,然后重启机器在用oradim启动oracle service 
资料来源:http://www.oracle.com.cn/viewthread.php?tid=1634
我也学习了,可能是NT的关系</os2>
Copy after login
===================================================================
结论:
<pre class="brush:php;toolbar:false"><span><strong>该问题与(操作系统的)权限有关系,即执行dbca程序的操作系统用户没有相关的权限导致dbca程序<span>无法打开windows nt服务控制管理器</span>  </strong></span>
Copy after login

参考:

无法打开windows NT服务管理器 Oracle     谷歌

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to check tablespace size of oracle How to check tablespace size of oracle Apr 11, 2025 pm 08:15 PM

To query the Oracle tablespace size, follow the following steps: Determine the tablespace name by running the query: SELECT tablespace_name FROM dba_tablespaces; Query the tablespace size by running the query: SELECT sum(bytes) AS total_size, sum(bytes_free) AS available_space, sum(bytes) - sum(bytes_free) AS used_space FROM dba_data_files WHERE tablespace_

How to import oracle database How to import oracle database Apr 11, 2025 pm 08:06 PM

Data import method: 1. Use the SQLLoader utility: prepare data files, create control files, and run SQLLoader; 2. Use the IMP/EXP tool: export data, import data. Tip: 1. Recommended SQL*Loader for big data sets; 2. The target table should exist and the column definition matches; 3. After importing, data integrity needs to be verified.

How to uninstall Oracle installation failed How to uninstall Oracle installation failed Apr 11, 2025 pm 08:24 PM

Uninstall method for Oracle installation failure: Close Oracle service, delete Oracle program files and registry keys, uninstall Oracle environment variables, and restart the computer. If the uninstall fails, you can uninstall manually using the Oracle Universal Uninstall Tool.

How to create a table in oracle How to create a table in oracle Apr 11, 2025 pm 08:00 PM

Creating an Oracle table involves the following steps: Use the CREATE TABLE syntax to specify table names, column names, data types, constraints, and default values. The table name should be concise and descriptive, and should not exceed 30 characters. The column name should be descriptive, and the data type specifies the data type stored in the column. The NOT NULL constraint ensures that null values ​​are not allowed in the column, and the DEFAULT clause specifies the default values ​​for the column. PRIMARY KEY Constraints to identify the unique record of the table. FOREIGN KEY constraint specifies that the column in the table refers to the primary key in another table. See the creation of the sample table students, which contains primary keys, unique constraints, and default values.

How to view instance name of oracle How to view instance name of oracle Apr 11, 2025 pm 08:18 PM

There are three ways to view instance names in Oracle: use the "sqlplus" and "select instance_name from v$instance;" commands on the command line. Use the "show instance_name;" command in SQL*Plus. Check environment variables (ORACLE_SID on Linux) through the operating system's Task Manager, Oracle Enterprise Manager, or through the operating system.

How to re-query oracle How to re-query oracle Apr 11, 2025 pm 07:33 PM

Oracle provides multiple deduplication query methods: The DISTINCT keyword returns a unique value for each column. The GROUP BY clause groups the results and returns a non-repetitive value for each group. The UNIQUE keyword is used to create an index containing only unique rows, and querying the index will automatically deduplicate. The ROW_NUMBER() function assigns unique numbers and filters out results that contain only line 1. The MIN() or MAX() function returns non-repetitive values ​​of a numeric column. The INTERSECT operator returns the common values ​​of the two result sets (no duplicates).

How to encrypt oracle view How to encrypt oracle view Apr 11, 2025 pm 08:30 PM

Oracle View Encryption allows you to encrypt data in the view, thereby enhancing the security of sensitive information. The steps include: 1) creating the master encryption key (MEk); 2) creating an encrypted view, specifying the view and MEk to be encrypted; 3) authorizing users to access the encrypted view. How encrypted views work: When a user querys for an encrypted view, Oracle uses MEk to decrypt data, ensuring that only authorized users can access readable data.

How to set up users of oracle How to set up users of oracle Apr 11, 2025 pm 08:21 PM

To create a user in Oracle, follow these steps: Create a new user using the CREATE USER statement. Grant the necessary permissions using the GRANT statement. Optional: Use the RESOURCE statement to set the quota. Configure other options such as default roles and temporary tablespaces.

See all articles