`

WebSphere Application Server 6.0.2.9 配置 SqlServer 2000 SP2时出错问题解决

阅读更多

WebSphere Application Server 6.0.2.9 配置 SqlServer 2000 SP2时出错问题解决

 

[09-7-15 11:53:32:062 CST] 0000001f DataSourceCon E   DSRA8040I: 无法连接到 DataSource。遇到 "":java.lang.Exception: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]未能找到存储过程 'master..xp_jdbc_open'。DSRA0010E: SQL 状态 = HY000,错误代码 = 2,812

 

在节点 sivyerNode01 上的服务器 server1 上,数据源 ××× 的测试连接由于以下异常 java.lang.Exception: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]JTA is not support when selectMethod=direct. Switch to selectMethod=cursor.DSRA0010E: SQL 状态 = HY000,错误代码 = 0 而失败。

 

 

 

1、执行附件中的 Sql语句

/*
**	INSTJDBC.SQL
**	Installs XA stored procedures used by the JDBC driver 
*/


go
use master
go
dump tran master with no_log
go


/*
** drop procedures if they're already in the database
*/

sp_dropextendedproc 'xp_jdbc_open' 
go
sp_dropextendedproc 'xp_jdbc_open2' 
go
sp_dropextendedproc 'xp_jdbc_close'
go
sp_dropextendedproc 'xp_jdbc_close2'
go
sp_dropextendedproc 'xp_jdbc_start'
go
sp_dropextendedproc 'xp_jdbc_start2'
go
sp_dropextendedproc 'xp_jdbc_end'
go
sp_dropextendedproc 'xp_jdbc_end2'
go
sp_dropextendedproc 'xp_jdbc_prepare'
go
sp_dropextendedproc 'xp_jdbc_prepare2'
go
sp_dropextendedproc 'xp_jdbc_commit'
go
sp_dropextendedproc 'xp_jdbc_commit2'
go
sp_dropextendedproc 'xp_jdbc_rollback'
go
sp_dropextendedproc 'xp_jdbc_rollback2'
go
sp_dropextendedproc 'xp_jdbc_forget'
go
sp_dropextendedproc 'xp_jdbc_forget2'
go
sp_dropextendedproc 'xp_jdbc_recover'
go
sp_dropextendedproc 'xp_jdbc_recover2'
go
dump tran master with no_log
go



/*
**  add references for the stored procedures
*/

print 'creating JDBC XA procedures'
go

sp_addextendedproc 'xp_jdbc_open', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_open2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_close', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_close2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_start', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_start2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_end', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_end2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_prepare', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_prepare2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_commit', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_commit2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_rollback', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_rollback2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_forget', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_forget2', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_recover', 'sqljdbc.dll'
go
sp_addextendedproc 'xp_jdbc_recover2', 'sqljdbc.dll'
go


/*
**  grant privileges so that all users can enlist in XA transactions
*/
grant execute on xp_jdbc_open to public
go
grant execute on xp_jdbc_open2 to public
go
grant execute on xp_jdbc_close to public
go
grant execute on xp_jdbc_close2 to public
go
grant execute on xp_jdbc_start to public
go
grant execute on xp_jdbc_start2 to public
go
grant execute on xp_jdbc_end to public
go
grant execute on xp_jdbc_end2 to public
go
grant execute on xp_jdbc_prepare to public
go
grant execute on xp_jdbc_prepare2 to public
go
grant execute on xp_jdbc_commit to public
go
grant execute on xp_jdbc_commit2 to public
go
grant execute on xp_jdbc_rollback to public
go
grant execute on xp_jdbc_rollback2 to public
go
grant execute on xp_jdbc_forget to public
go
grant execute on xp_jdbc_forget2 to public
go
grant execute on xp_jdbc_recover to public
go
grant execute on xp_jdbc_recover2 to public
go

print ''
print 'instxa.sql completed successfully.'
go

dump tran master with no_log
go
checkpoint
go
/**/

 

2、将sqljdbc.dll 复制到 SQLSERVER 安装目录下

    例如:C:\Program Files\Microsoft SQL Server\80\Tools\Binn

 

分享到:
评论

相关推荐

    Websphere Application Server 6.0 应用指南

    - 在将应用从旧版本迁移到WebSphere Application Server 6.0时,开发者需要注意一系列潜在的问题,例如代码兼容性、配置差异以及新的安全特性等。 ##### 2.2 导入源代码 - **2.2.1 从早期版本迁移工作空间** - ...

    WAS 6.0.2.9 部署应用使用过滤器问题解决办法

    当在WAS 6.0.2.9环境中遇到过滤器问题时,通过检查配置、代码实现、日志以及容器设置,通常能找出问题并找到有效的解决方案。在测试程序`mytest`中,我们可以通过类似的方法来分析和解决过滤器问题。

    com.springsource.com.ibm.websphere.uow-6.0.2.17.jar

    jar包,官方版本,自测可用

    WebSphere Application Server9.0.0.2.txt

    WebSphere Application Server9.0.0.2 安装包百度云盘资源地址,非商业用途,仅供学习使用。

    WebSphere_MQ_V6.0.zip

    5. **集成改进**:与IBM其他产品如WebSphere Application Server、DB2等的集成更加紧密,提升整体解决方案的效率。 6. **管理工具**:提供了一套全面的管理工具,包括MQ Explorer,用于监控和管理队列管理器、队列和...

    W38S1 Administration of WebSphere Application Server V5.pdf

    根据提供的文档信息,我们可以推断出这是一份关于 IBM WebSphere Application Server V5 管理的培训材料。下面将详细介绍这份文档中的关键知识点。 ### 一、文档概述 此文档名为《W38S1 Administration of ...

    Portal集群手册

    - **中间件软件**:安装并配置IBM WebSphere Application Server 6.0.2.9,以及Oracle 10.1.0.2数据库服务器。 - **目录服务**:设置Sun One Directory Server 5.1用于用户管理和权限控制。 - **HTTP服务器**:部署...

    WebSphere Application Server 6 安装配置全过程(图文)

    WebSphere Application Server 6 是IBM推出的一款企业级应用服务器,是构建、部署和管理Java EE应用程序的重要平台。本文将详细阐述其安装配置的全过程,并通过图文形式帮助理解每个步骤。 一、系统需求与准备工作 ...

    Websphere Portal Server 6.0 安装指南

    ### Websphere Portal Server 6.0 安装与配置详解 #### 一、概述 在本篇文章中,我们将深入探讨IBM Websphere Portal Server 6.0 (以下简称WPV6)的安装与配置过程。WPV6是基于Java 2 Platform, Enterprise Edition...

    com.ibm.websphere.uow 6.0.2.17

    <!-- https://mvnrepository.com/artifact/com.ibm.websphere/uow --> <groupId>com.ibm.websphere</groupId> <artifactId>uow <version>6.0.2.17 </dependency>

    WebSphere Application Server6.x资源环境提供程序配置

    WebSphere Application Server 6.x 资源环境提供程序配置是一种高级的系统配置方式,它允许开发者在不修改应用程序代码或配置文件的情况下,通过WebSphere管理控制台动态修改J2EE应用的配置属性。这种方式特别适合...

    深度比较:WebSphere Application Server V6.0 Vs. BEA WebLogic Server 9.0

    在本文中,我们将深入探讨两个主流的企业级Java应用程序服务器之间的对比——IBM的WebSphere Application Server V6.0与BEA的WebLogic Server 9.0。这两款产品都是企业级应用部署的重要选择,但它们在关键特性、兼容...

    WebSphere Application Server V6

    ### WebSphere Application Server V6 自动安装应用程序知识点详解 #### 一、概述 **WebSphere Application Server (WAS) V6** 是IBM提供的一款企业级应用服务器产品,它支持多种应用开发模型,如Java EE、Web ...

    WebSphere Application Server 7.0-Windows.z05

    WebSphere Application Server 7.0-Windows.z05,由于上传限制,把源文件分成了9个安装包,需要全部下载。

    配置websphere application server ssl

    ### WebSphere Application Server SSL配置详解 #### 一、概述 在现代互联网环境下,为了保障数据的安全性和隐私性,采用SSL/TLS加密已经成为一种普遍做法。本文档将详细介绍如何配置IBM WebSphere Application ...

    WebSphere Application Server V6.1 Security Handbook.

    《WebSphere Application Server V6.1 Security Handbook》是一本非常实用的指导手册,它不仅详细介绍了如何配置和管理WebSphere Application Server的安全特性,而且还提供了丰富的示例代码和应用程序,帮助用户更...

    Developing themes and skins in IBM WebSphere Portal 6.0.X

    ### 开发 IBM WebSphere Portal 6.0.X 中的主题与皮肤 #### 一、引言 随着企业级应用对用户体验需求的不断增长,IBM WebSphere Portal 6.0.X 提供了强大的工具来帮助开发者创建定制化且美观的门户界面。本文档旨在...

    websphere 6.0 for linux.doc

    【描述】:本文档详细阐述了如何在VMware上安装WebSphere Application Server 6.0 for Linux,包括环境配置、网络设置以及WebSphere的安装步骤。 【标签】:WebSphere、Linux、VMware、网络配置、应用服务器 ...

Global site tag (gtag.js) - Google Analytics