How to drop multiple databases in SQL Server
Why not just do this instead? USE master; Go SELECT ‘DROP DATABASE [‘+ name + ‘]’ FROM sys.databases WHERE name like ‘_database_name_%’; GO Capture the output of that resultset and then paste it into another query window. Then run that. Why write all this TSQL cursor code? “When you have a hammer, everything looks like … Read more