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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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…