编译数据库项目时如何处理临时表

发布于 2024-11-13 05:31:39 字数 187 浏览 2 评论 0原文

我们刚刚创建了一个包含多个数据项目的解决方案。我们继承了系统并想要进行数据库清理,但是当我们编译某些数据库时,我们收到错误,表、id 等不存在,并且它发生在存储过程中创建临时表的地方。

假设存储过程创建了一个临时表,最后将其删除,编译器抱怨并说该表不存在(在数据库模式中)。我们如何解决这个问题?有什么设置我找不到?

提前致谢。

We just created a solution with multiple data projects. We inherited the system and want to do a database cleanup but when we compile some of the databases we get the error that table, id etc does not exist and it occures where temp tables are created in stored procedures.

Let's say a stored proc creates a temp table and at the end drops it the compiler complains and says that the table does not exist (in the database schema). How can we work around this? Any settings I can't find?

Thanks in advance.

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

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

发布评论

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

评论(1

黎歌 2024-11-20 05:31:39

Microsoft Connect 中针对此问题提出了一个错误,并建议了一种解决方法:使用表变量而不是临时表。所以,使用

declare @t table (ID int, Name nvarchar(100) )
insert into @t ...

而不是

create table #t (ID int, Name nvarchar(100) )
insert into #t ...
drop table #t

There is a bug filed in Microsoft Connect on this issue, and there is a workaround suggested: use table variables instead of temporary tables. So, use

declare @t table (ID int, Name nvarchar(100) )
insert into @t ...

instead of

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