Viewing post 1 (of 2 total)
/*
This is my approach to this case
*/
DECLARE @DBname AS NVARCHAR(100)
DECLARE @Drop AS NVARCHAR(100)
DECLARE @Result AS NVARCHAR(100)
SET @DBname = 'Your_DB_Name' -- Replcae 'Your_DB_Name' with the database name of your choice
SET @DROP...
October 30, 2022 at 5:29 pm
#4106533