English 中文(简体)
dbo in SqlServer
原标题:dbo in SqlServer

I m 将数据库从Teradata改为SqlServer。 I ve noted all table and procedures are listed by the prefix “dbo ”(e.g. “dbo.Table1”).

我愿知道,我是否能够以及如何摆脱“dbo”,因为这将使转换任务更加容易。

最佳回答

www.un.org/Depts/DGACM/index_french.htm 表格和储存程序附在表上。 <编码>dbo是服务器中的缺省表,但如有必要,可以添加其他图象。

See this MSDN条款。

问题回答

dbo是chem,如果你愿意,你可以具体说明新的chem。 dbo是违约的机器服务器。

所有表格都必须输入图表。 durilai说,dbo是服务器的“default”chem(始终存在)。 然而,注意到不同的用户可能有不同的缺省图象(如果存在不止一个)。

如果你在提及一张表格时没有具体说明该表,那么服务器将在其缺省图中搜寻该表(而任何其他物体也是如此)。

页: 1 您的缺席表象是一帆船,以下两份说明是等同的:

select * from Table1
select * from dbo.Table1

dbo is the default schema in SQL Server if no schema was set by user, if you want you can create new schema and create tables to it.

舒马斯是有用的。 例如,我曾准许每个单独储存的程序使用 app。 现在,我准许 app木对含有所有储存程序的chem木进行批准。 这非常容易。





相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签