开发者

MSSQLSYSTEMRESOURCE DATABASE

开发者 https://www.devze.com 2023-01-12 14:36 出处:网络
what is mssqlsys开发者_Python百科temresource database? do we need to copy this while moving form one server to another one?All system stored procedures, views and functions are stored in the MsSqlSyst

what is mssqlsys开发者_Python百科temresource database? do we need to copy this while moving form one server to another one?


All system stored procedures, views and functions are stored in the MsSqlSystemResource database. This db is hidden, you can't see it in SSMS but lives in the data directory...should already be on your new server

run this query on the other server

select name, filename
 from master..sysaltfiles
where dbid = 32767


The system resource database. You should treat it as part of your SQL Server binaries, not as part of your data. You should never copy this file, it is manipulated only by SQL Setup operations. Replacing a resource database is not supported and can render a SQL Server instance unusable.

0

精彩评论

暂无评论...
验证码 换一张
取 消