I created some objects in MS SQL Server 2008 using SubSonic 3. It created them based on the user specified in connection string like:
test_user.table1
but for some reason I am not able to test_user account. Now I am not able to access the tables within test_user schema. Is there any way to transfer schema from test_user to dbo so that any login can access it?
Alter Schema dbo Transfer...,Alter Authorizationis new thing for me. But I thinkAlter Authorizationshould be better asSchema Transfercan cause problem ifsys.objectsis used for any functions as per MSDN – TheVillageIdiot Sep 01 '11 at 03:55