Local (local) temporary tables in SQL Server

Source: Internet
Author: User
Tags session id

A SSMs Query window is a session

Verify with local temp table:

Local temporary tables are visible only in the current session, and global temporary tables are visible in all sessions.
The name of the local temporary table is preceded by a number character (#table_name), and the name of the global temporary table is preceded by two number characters (# #table_name).

Open a Query window, create a new local temporary table, insert data, and query

Create Table int Identity Primary key,                    name nvarchar (ten) null); Go  into Values ('mark '),                              (' test ');  GoSelect from #temptable

And then the new Query window,

SELECT * FROM #temptable

What is this for?

These two SSMS query windows are two sessions?

sp_who view, speak with the facts:

52,53 that's the SPID, and I'm not cutting it complete.

The SPID is the session ID, the session ID is different, that is two sessions!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.