
You are getting below error message while performing the homogeneous system copy using the SAP software provisioning manager.
User tables belonging to the dbo schema were found in the database SID.
SOLUTION: You can only install an SAP system in a database with no user objects
belonging to the system schema dbo.
If there already is an SAP system in the database (MCOD), or you install a Java Add-In,
you might have to convert the existing system to its own schema, or contact your SAP support.

Solution
Launch the Microsoft SQL Studio and run the following query to list out all the tables within dbo schema.
SELECT * FROM sys.tables WHERE schema_id = schema_id('dbo')
Drop them now! 🙂
drop table dbo.TABLEABC
You can resume your activity on SAP software provisioning manager again.


