CREATE[ORREPLACE][PUBLIC]SYNONYM[synonym_schema.]synonym_nameFOR[object_schema.]object_name; 参数说明 参数描述 OR REPLACE表示如果要创建的同义词名称已存在,则使用新的定义重新创建同义词。 PUBLIC指定PUBLIC来创建公共同义词,所有用户都可以使用。用户必须对基础对象具有相应的权限才能使用该同义词。 在解析对象...
CREATE[ORREPLACE][PUBLIC]SYNONYM[synonym_schema.]synonym_nameFOR[object_schema.]object_name; 参数说明 参数描述 OR REPLACE表示如果要创建的同义词名称已存在,则使用新的定义重新创建同义词。 PUBLIC指定PUBLIC来创建公共同义词,所有用户都可以使用。用户必须对基础对象具有相应的权限才能使用该同义词。 在解析对象...
Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019. Returns: the encryptionKey value.getETag public String getETag() Get the eTag property: The ETag of the synonym map. Returns: the ...
They are created by the application owner for the tables and other objects such as procedures and packages so the users of the application can see the objects.SyntaxCREATE PUBLIC SYNONYM Cust_table for efashion.Customer; To create a PUBLIC Synonym, you have to use keyword PUBLIC as shown....
Syntax for creating Oracle/PLSQL synonyms CREATE [OR REPLACE] [PUBLIC] SYNONYM [schema .] synonym_name FOR [schema .] object_name [@ dblink]; OR REPLACE Allows you to recreate a synonym (if it already exists), without having to issue the DROP synonym command. ...
CREATE PUBLIC SYNONYM sales FORjward.sales_data; After the public synonym is created, youcan query the table SALES_DATA with a simple SQL statement: 你的语句将简化为: SELECT * FROM sales; Notice that the public synonym SALES hidesthe name of the table SALES_DATA and the name of the schem...
PUBLICSYNONY m公共同义字是一个没有模式名的别名。 youdao 21. The term iteration is often erroneously used as a synonym for increment. 迭代这一术语常被错误地用作是增量 的同义词。 youdao 22. Everyone wants to be on the side of equality or, to use a synonym, parity. 每一个人都想支持平等...
Represents the information about synonyms, antonyms, related words, or related expressions for the specified range or a given string. C# [System.Runtime.InteropServices.Guid("0002099B-0000-0000-C000-000000000046")]publicinterfaceSynonymInfo Attributes ...
同义词的语法是:CREATE [OR REPLACE] [PUBLIC] SYNONYM [ schema.] 同义词名称 FOR [ schema.] object [ @dblink ]; 创建同义词的时候还需要赋值相关的权限: 首先是:用sys账号给DM账号赋予CREATE SYNONYM的权限 GRANTCREATESYNONYMTOuser_temp; user_temp是你要建同义词的用户。
FOR hr.locations; To create aPUBLICsynonym for theemployeestable in the schemahron theremotedatabase, you could issue the following statement: CREATE PUBLIC SYNONYM emp_table FOR hr.employees@remote.us.oracle.com; A synonym may have the same name as the underlying object, provided the underlyin...