i have about 10 scientists writing to a mysql database
i have migrated to sql server and now i have to deal with OWNERS
does it matter which owner i choose? when i do automate migration frmo mysql to sql server it assigns DBO. is that OK? should i continue to use that?
so now i have to do:
SELECT TOP 1000 [rid]
,[filename]
,[qcname]
,[compound]
,[response]
,[isid]
,[isidresp]
,[finalconc]
,[rowid]
FROM [test].[owner].[calibration]
If all of your scientists used all of the tables in your previous database, it would probably be best to stay with DBO. That is the least complicated, and if you don’t need the additional schemas, don’t make it more complicated.