如何知道哪些临时表当前在 SQL Server 范围内?

发布于 2024-07-29 03:46:28 字数 269 浏览 5 评论 0原文

我经常收到错误:

Msg 208, Level 16, State 0, Line 1
Invalid object name '#foo'.

Msg 3701, Level 11, State 5, Line 1
Cannot drop the table '#foo', because it does not exist in the system catalog.

我如何知道范围内有哪些临时表? 它们显然不会像基表那样出现在 SSMS 中。

I often get the errors:

Msg 208, Level 16, State 0, Line 1
Invalid object name '#foo'.

Msg 3701, Level 11, State 5, Line 1
Cannot drop the table '#foo', because it does not exist in the system catalog.

How do I know what temporary tables there are in scope? They obviosly don't show up in SSMS like base tables do.

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

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

发布评论

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

评论(2

も星光 2024-08-05 03:46:28

在尝试对表执行查询之前,您可以检查该表是否存在。

IF object_id('tempdb..#foo') IS NOT NULL 

You can check to see if the table exists before trying to perform a query on it.

IF object_id('tempdb..#foo') IS NOT NULL 
幼儿园老大 2024-08-05 03:46:28

扩展 Brandon 的答案...

在 SSMS 查询窗口 1 中:

CREATE TABLE #foo (bar int)
GO
CREATE TABLE ##bar (foo int)
GO
SELECT object_id('tempdb..#foo'), object_id('tempdb..##bar')
GO

在窗口 2 中:

SELECT object_id('tempdb..#foo'), object_id('tempdb..##bar')

##bar 在两个会话中都可见,正如预期的那样。 #foo 仅在本地会话中。

Expanding Brandon's answer...

In SSMS query window 1:

CREATE TABLE #foo (bar int)
GO
CREATE TABLE ##bar (foo int)
GO
SELECT object_id('tempdb..#foo'), object_id('tempdb..##bar')
GO

In window 2:

SELECT object_id('tempdb..#foo'), object_id('tempdb..##bar')

##bar is visible in both sessions, as expected. #foo in the local session only.

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