🌻
SQLServerエラー:ユーザーインスタンスの生成は無効です
現象
「SQL Server でのユーザー インスタンスの生成は無効です。sp_configure 'user instances enabled’ を使用して、ユーザー インスタンスを生成してください」 と表示される。
対策
exec sp_configure 'user instances enabled’, '1’
go
reconfigure
go
「SQL Server でのユーザー インスタンスの生成は無効です。sp_configure 'user instances enabled’ を使用して、ユーザー インスタンスを生成してください」 と表示される。
exec sp_configure 'user instances enabled’, '1’
go
reconfigure
go
Discussion