Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server master database

When I was using SQL Server 2008, I was accidentally running a lot of scripts against the SQL server master database.

Can this be problematic? Which problems can arise from doing so?

like image 482
Chuck Norris Avatar asked Feb 23 '23 04:02

Chuck Norris


1 Answers

No harm done

System objects are protected from DDL and DML, more so since SQL Server 2005+

You may have been unlucky enough to overwrite some unprotected objects (very slim chance, probably not happend) but it's something we've all done...

like image 77
gbn Avatar answered Mar 02 '23 19:03

gbn