Problem(Abstract)How to resolve an error SQL1397N or "Error 1069" when starting a DB2 instance or service?
SymptomWhen starting a DB2 instance from the command line, the following error occurs:
C:\>db2start
SQL1397N The DB2 service failed to logon.
When trying to start a DB2 service from Windows Services, the following error occurs:
Error 1069: The service did not start due to a logon failure.
CauseThe error occurs because the password for the username starting the DB2 service is incorrect.
Resolving the problemModify the password under the [Log On] properties tab for the DB2 service.
START->Control Panel->Administrative Tools->Services
Right Click on "DB2 - (DB2 copy name) - <instance name> <-nodenum>"
Select Properties and choose the [Log On] tab.
Set the correct password for the user account.
Start the service or use the db2start command.
Note: There may be other DB2 services which have an incorrect password that need to be corrected. For each DB2 service which has a Log On username other than "Local System", please update the password using the same technique.
Example Services which may be running under a username with an incorrect password: DB2 Governor, DB2DAS, DB2 Remote Command Server
分享到:
相关推荐
DB2中几种遇到的SQL1032N出错的解决
- **db2start失败(SQL6048N)**:通常需要查看db2diag.log以确定具体错误原因。 通过这些工具和方法,DB2管理员能够深入理解系统行为,及时发现和解决问题,确保数据库系统的稳定性和高效运行。在实际操作中,...
- 注意点: Oracle使用 `EXCEPTION` 块来捕获异常,而DB2使用 `ON SQLERROR DO` 来处理异常。 #### 6. Package初始化 - **Oracle** 支持使用 `PACKAGE` 组织多个存储过程、函数等对象。 - Oracle示例: ```sql ...
根据给定的文件信息,以下是对“编程(db2)使用技巧”的详细知识点解析: ### 1. DB2编程基础 ...以上就是基于给定文件的DB2编程使用技巧的详细解析,涵盖了从基本的SQL操作到高级的系统管理技能。
db2start -- 连接到数据库 db2 connect to sample -- 创建一个简单的存储过程 db2 create procedure proc1 begin end -- 删除存储过程 db2 drop procedure proc1 ``` 成功执行以上步骤表明SQL存储过程环境配置...
- `db2start`:启动DB2实例。 - `db2stop force`:停止DB2实例,force参数确保所有活动事务被立即结束。 2. 登录/退出DB2控制中心: - `db2 connect to <database_name>`:连接到指定的数据库。 - `db2 connect...
- **启动数据库**:`#db2start` 启动指定的DB2实例。 - **停止数据库**:`#db2stop` 停止指定的DB2实例。 - **连接数据库**:`#db2connect todna user db2scadm using 密码` 使用指定用户身份连接到特定的...
- 启动实例,可执行`db2start`命令。 5. **启动控制中心** - 作为root用户,执行`xhost +`以允许所有用户使用图形界面。 - 以db2inst1用户登录,启动JDBC侦听器进程`./db2jstrt`和控制中心进程`./db2cc`。 6. *...
db2 IBM DB2在企业级的应用最为广泛, 在全球的500家最大的企业中,几乎85%以上用DB2数据库服务器。收费 大型企业 Access 微软 Access是一种桌面数据库,只适合数据量少的应用,在处理少量 数据和单机访问的数据库时...
* TDataSetProvider generates incorrect SQL in response to a RefreshRecord request in some cases and fails to update all fields properly (Quality Central 4014). * When TDataSetProvider obtains the DB ...
error_reporting ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; Development Value: E_ALL ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT ; html_errors ; Default Value: On ; ...
Db2**:Db2 是 IBM 的关系型数据库管理系统,同样不适合移动开发环境。 - **正确答案**:A. sqlLite - **解析**:SQLite 是 Android 开发中首选的数据库解决方案。它是一个轻量级的关系型数据库,支持 SQL 语法...
- Oracle、SQL Server 和 Db2 都是功能强大的企业级数据库管理系统,通常用于服务器端而非移动设备。 #### 八、BroadcastReceiver的概念 **题目**: 关于BroadcastReceiver的说法不正确的是? - **选项**: - A,是...