Differences between a user temporary table and a global temporary table in SQL Server

Source: Internet
Author: User

Temporary tables are divided into:

Local temporary table, limited to the current visitor access, the creation method goes as follows:
CREATE table #TableName (table structure)
stored in database tempdb (hard disk), current user disconnects (put current), automatically deleted
If you are continuing to open a connection in use and do not need the temporary table, do this: drop table #TableName

Global temp table, all Access user access, create methods to go as follows:
CREATE TABLE # #TableName (table structure)
stored in database tempdb, automatically deleted when all access users are disconnected
Delete statement: drop table # #TableName

Note: Each SQL Server Open tab is a connection, and when the tab to create a temporary table is closed, the current user is disconnected

Differences between a user temporary table and a global temporary table in SQL Server

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.