Part_Master Key Value not Found – CLR was disabled
If you run into an error like this when you’ve just installed SQL Server and MAX is could be the CLR was not enabled.
Verify CLR is enable by running the following server Configuration script.
sp_configure @configname=clr_enabled, @configvalue=1
GO
RECONFIGURE
GO