是否可以在架构中的包下创建 table/views?
Is it possible to create table/views under a package in the schema?
In MS SQL Server 2012/oracle, I need to create something like a.b.c
where c is the table/view name, b is the package name and a is the
schema name.
I wanted to create a table/view in two levels. I couldn't find any
proper document regarding this. Any suggestion to find the good document
will be helpful.
MS SQL Server和Oracle有很大的不同。它们都是关系数据库,但供应商不同,功能也不尽相同。虽然有相似之处。
无论如何,您不会在包下创建 tables。 table 是一个对象,就像包是一个对象一样。包旨在容纳 Oracle 中 procedures/functions 的集合。 SQL 服务器甚至没有实现包。
因此,作为 Oracle 的示例,您将获得的最好结果是数据库 > 帐户(或架构..)> table。
In MS SQL Server 2012/oracle, I need to create something like a.b.c where c is the table/view name, b is the package name and a is the schema name.
I wanted to create a table/view in two levels. I couldn't find any proper document regarding this. Any suggestion to find the good document will be helpful.
MS SQL Server和Oracle有很大的不同。它们都是关系数据库,但供应商不同,功能也不尽相同。虽然有相似之处。 无论如何,您不会在包下创建 tables。 table 是一个对象,就像包是一个对象一样。包旨在容纳 Oracle 中 procedures/functions 的集合。 SQL 服务器甚至没有实现包。
因此,作为 Oracle 的示例,您将获得的最好结果是数据库 > 帐户(或架构..)> table。