开发者

sql-server which owner should i use?

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开发者_C百科 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.


If you want to use the default owner (really, schema, if you're using SqlServer 2005 or later), you can use the default (which is dbo).

For more information about the differences between owners and schemas, which are somewhat related, take a look here.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜