配置oracle 11g数据遇到dim
配置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>
结论:
<pre class="brush:php;toolbar:false"><span><strong>该问题与(操作系统的)权限有关系,即执行dbca程序的操作系统用户没有相关的权限导致dbca程序<span>无法打开windows nt服务控制管理器</span> </strong></span>
参考:
无法打开windows NT服务管理器 Oracle 谷歌

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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_

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.

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.

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.

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.

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).

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.

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.
