How to drop multiple databases in SQL Server

后端 未结 3 1655
梦如初夏
梦如初夏 2020-12-24 02:19

Just to clarify, ths isn\'t really a question, more some help for people like me who were looking for an answer.
A lot of applications create temp tables and the like, b

3条回答
  •  清歌不尽
    2020-12-24 03:01

    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 a nail!"..

提交回复
热议问题