You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BEGIN
DECLARE @qry nvarchar(max);
SELECT @qry =
(SELECT'DROP DATABASE '+ name +'; 'FROMsys.databasesWHERE name LIKE'orbeon_%_tomcat'
FOR XML PATH(''));
EXEC sp_executesql @qry;
END;