> Some cases, we might have issue with renaming Database once we import from UAT server to DEV server. In order to rectify this, we need to execute the following commands in SQL SERVER.
-- RENAME DATABASE ONE TO ANOTHER IN SQL SERVER.
-- Set Database in Single User Mode:
ALTER DATABASE AxDB SET SINGLE_USER WITH ROLLBACK IMMEDIATE
-- Try to Rename the Database:
ALTER DATABASE AxDB MODIFY NAME = AxDB_Initial_Backup_15072025
-- Set the Database to Multi User Mode:
ALTER DATABASE AxDB_Initial_Backup_15072025 SET MULTI_USER WITH ROLLBACK IMMEDIATE