Back to Browse

SQL Server DBA Tutorial 13 - How to Rename a Database in SQL Server

105 views
Jun 5, 2022
2:17

[email protected] Chirag's SQL Server DBA Tutorial https://www.chirags.in ***************************************************************************************** * How to Rename a Database in SQL Server * ***************************************************************************************** We will be using two ways to Rename a Database in SQL Server 1. Using SQL Server management studio graphic user interface GUI Version 2. Using T-SQL script /**T-SQL**/ USE [master]; GO ALTER DATABASE [DVDRentalNew] Modify Name = DVDRentalNew2 GO Note : Flow the Process shown in video. 😉Subscribe and like for more videos: https://www.youtube.com/channel/UCLdaO4-i_gxQMi87JwjKOwA 💛Don't forget to, 💘Follow, 💝Like, 💖Share 💙&, Comment Tutorial Link : https://www.chirags.in/tutorials/microsoft_sql_server_database_tutorials Thanks & Regards, Chitt Ranjan Mahto "Chirag" _________________________________________________________________________________________ Note: All scripts used in this demo will be available in our website. Link will be available in description.

Download

1 formats

Video Formats

360pmp43.7 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

SQL Server DBA Tutorial 13 - How to Rename a Database in SQL Server | NatokHD