0

我想在其中创建表MSDB并在其中存储一些二进制数据。

怎么能做到这一点?

谢谢

4

1 回答 1

2

Assuming you have adequate permissions, you can create tables in msdb and master the same way you create tables in any user database. It can be done using Transact-SQL or using the visual tools in SQL Server Management Studio.

However, as the commenters above have noted, it is usually not a good idea to make changes to the system databases. Microsoft reserves the right to make any and all changes to those databases as they roll out new software updates and service packs. That could adversely affect your solution. Conversely, your changes may have an adverse effect on the system databases and the processes and functionality they support.

I recommend storing the data in a separate user database.

于 2012-07-10T02:51:17.343 回答