Crystal Reports 与 SQL Server 2005:设置事务隔离级别

发布于 2024-08-11 09:00:12 字数 370 浏览 5 评论 0原文

有没有办法在 Crystal Reports 查询时指定事务隔离级别 SQL Server 2005 数据库无需采取以下任何措施:

  • 将报表的查询封装在存储过程中,该存储过程在查询本身之前执行SET TRANSACTION ISOLATION LEVEL...
  • 在 Crystal Reports 中编写 SQL 查询来执行SET TRANSACTION ISOLATION LEVEL...

Is there a way to specify the transaction isolation level when Crystal Reports queries a SQL Server 2005 database without resorting to any of the following:

  • Encapsulating the report's query in a stored procedure that executes SET TRANSACTION ISOLATION LEVEL... before the query itself
  • Hand-writing the SQL query in Crystal Reports to execute SET TRANSACTION ISOLATION LEVEL...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一江春梦 2024-08-18 09:00:12

我能够将其嵌入到 Command 对象中:

SET TRANSACTION ISOLATION LEVEL REPEATABLE READ

--Command objects need to return a value
SELECT GetDate()

此 Command 对象是我在数据库专家中“编写”的查询的补充。

您能详细说明一下设置隔离级别的必要性吗?

I was able to embed this in a Command object:

SET TRANSACTION ISOLATION LEVEL REPEATABLE READ

--Command objects need to return a value
SELECT GetDate()

This Command object was in addition to the query that I 'wrote' in the Database Expert.

Will you elaborate on the necessity of setting the ISOLATION LEVEL?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文