I successfully migrated from MySql to Sql Server using the migration tool.
Unfortunately, for some reason, it puts the database.DBO.tablename tables instead of just database.tablename
I have never used Sql Server, so maybe this is how they call their tables.
When I do this:
SELECT TOP 1000 [rid] ,[filename] ,[qcname] ,[compound] ,[response] ,[isid] ,[isidresp] ,[finalconc] ,[rowid] FROM [test].[calibration]
he does not work
But, when I do this:
SELECT TOP 1000 [rid] ,[filename] ,[qcname] ,[compound] ,[response] ,[isid] ,[isidresp] ,[finalconc] ,[rowid] FROM [test].[dbo].[calibration]
it works.
Does anyone know why it is prefixed with DBO?
source share