SQL Server transfers the physical storage location of the tempdb database

Source: Internet
Author: User
Back up the original file before transferring move tempdb from its current location on disk to a different disk location. Because tempdb is recreated every time the MSSQLSERVER service is started, you do not need to move data and log files physically. 1 Determine the logical file name of the tempdb database and the current location on the disk. SELECT name, physical_namefrom sys.master_fileswhere database_id = db_id (' tempdb '); GO 2 use Alter DATABASE to change the location of each file using Master; Goalter DATABASE tempdbmodify FILE (NAME = tempdev, FILENAME = ' E:\SQLData\tempdb.mdf '); Goalter DATABASE tempdbmodify FILE (NAME = templog, FILENAME = ' E:\SQLData\templog.ldf '); GO 3 Stop and restart SQL Server. 4 Verify file changes. SELECT name, physical_namefrom sys.master_fileswhere database_id = db_id (' tempdb ');

SQL Server transfers the physical storage location of the tempdb database

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.