How to create new table in msdb or master in SQL Server 2008 -


I want to create MSDB in the table and want to store some binary data in it.

How can this be done?

Thank you

Assume that you have sufficient permissions, you can use tables in MSDB And master can be done in the same manner as creating tables in any user database or using Visual Tools in SQL Server Management Studio.

However, as the above mentioned commentators have noted, it is generally not good for the system department to make changes, Microsoft reserves the right to make any and all changes in these databases because they New software updates and service packs roll. This will adversely affect your solution. Conversely, your changes may have adverse effects on the system database and those processes and functions.

I recommend saving data to a different user database.

Comments