gpt4 book ai didi

java - 在指定的MSSQL-Schema中创建 View

转载 作者:行者123 更新时间:2023-12-01 22:40:29 27 4
gpt4 key购买 nike

我使用的是 Apache Tomcat 7.0.41,需要使用官方“com.microsoft.sqlserver.jdbc.SQLServerDriver”驱动程序在 SQL Server 2012 上生成 View 。不幸的是,选择架构似乎存在问题。我尝试了多种方法来实现它,但每次都失败。

奇怪的是,定期创建表不会造成任何麻烦:

CREATE TABLE Defschem.dbo.Formate (
[FormatID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[Info] [varchar](50) NOT NULL UNIQUE,
[FVal] [float] NOT NULL)

尝试以同样的方式进行 View 。(仅供引用:语句本身和表名都是分开的final Strings,可以单独更改):

Create View Defschem.dbo.EtiFormatview as 
SELECT
...
FROM Defschem.dbo.Formate
...

失败并出现错误:

com.microsoft.sqlserver.jdbc.SQLServerException: 'CREATE/ALTER VIEW' does not allow specifying the database name as a prefix to the object name.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:216)

完全保留数据库名称会将创建的 View 放入“主”数据库中,这并不完全是我想要的。

该错误很常见,http://www.sql-server-helper.com/error-messages/msg-166.aspx建议:

To avoid this error, remove the database name when creating a view: [...] If you need to create a view on another database, change your database first then create the view without the database name:

USE Northwind
GO

CREATE VIEW [dbo].[CustomerCountries]
AS
SELECT DISTINCT [Country]
FROM [dbo].[Customers]
GO

我已经开始了整个 SQL 命令:

"USE " + DATABASENAME + '\n' + "GO " + '\n';

至:

USE Defschem
GO
Create View Defschem.dbo.EtiFormatview as
SELECT
...
FROM Defschem.dbo.Formate
...

它得到错误:

com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near 'GO'.

我不确定我的 '\n 对于 SQL-Server 来说是否不够漂亮...我无法弄清楚为什么语法应该不正确,所以我将整个 SQL 插入到 SQL 中-管理工作室...并且成功了!

我很难理解为什么同一个命令在 Studio 中有效,但在使用 Java 执行时却无效?该命令很简单(我使用常规语句而不是准备好的语句,因为我没有插入任何值并且所有字符串都是最终的):

stat = c.createStatement();
stat.executeUpdate(Info.getUsage()+VIEW);
c.commit();

官方文档(http://msdn.microsoft.com/en-us/library/ms187956.aspx - 请参阅“示例”部分)提到了在 GO SCHEMA 之后使用分号的情况。但更改为:

"USE " + DATABASENAME + ";\n" + "GO " + '\n';

给了我完全相同的错误。离开 '\n 也没有效果。

不久前似乎有人遇到过类似的问题: How can I specify the current schema for sql server in a jboss data source url?

我以前没有使用过 Synonyms,我认为这不是解决我的问题的正确方法。有更优雅的解决方案吗?

谢谢

最佳答案

USE 这样的语句从技术上讲可以在 JDBC 中使用。但是您不能使用GO,因为它不是 SQL Server T-SQL 语法的一部分;它实际上是 SQL Server Management Studio 和许多 SQL Server 脚本工具的一部分。

但是,JDBC 强烈建议不要直接使用影响连接状态的命令(包括其他事务(启动、提交回滚)):

Note: When configuring a Connection, JDBC applications should use the appropriate Connection method such as setAutoCommit or setTransactionIsolation. Applications should not invoke SQL commands directly to change the connection's configuration when there is a JDBC method available. (from java.sql.Connection)

如果要切换数据库,可以使用 Connection.setCatalog() 。这样连接就知道它现在已连接到不同的目录。如果您使用 USE 执行此操作,驱动程序可能仍然认为它已连接到初始数据库并执行错误的操作(例如,为错误的数据库缓存元数据等)。

当然,另一个选项在 the answer by Donal 中有描述。 :直接连接到正确的数据库。

关于java - 在指定的MSSQL-Schema中创建 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26225720/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com