简体   繁体   English

SYS模式Oracle 11g中的NestedTable

[英]NestedTable in SYS schema Oracle 11g

 desc sys.dbms_debug_vc2coll
 sys.dbms_debug_vc2coll TABLE OF VARCHAR2(1000)  

I found DBMS_DEBUG_VC2COL1 for table of varchar2.I was searching on the SYS schema if there is defined type for table of numbers?. 我找到了varchar2.表的DBMS_DEBUG_VC2COL1我是否正在搜索SYS模式,如果有数字表的定义类型? Any help would be greatly appreciated. 任何帮助将不胜感激。

Only reason for using the types in SYS schema is to avoid creating new types in the schema. 在SYS模式中使用类型的唯一原因是避免在模式中创建新类型。

The dbms_sql package has a number of predefined collection types , including VARCHAR2_TABLE and NUMBER_TABLE . dbms_sql包具有许多预定义的集合类型 ,包括VARCHAR2_TABLENUMBER_TABLE I'm not sure whether you are exclusively looking for SQL collection types or whether these PL/SQL collection types are sufficient. 我不确定您是专门寻找SQL集合类型还是这些PL / SQL集合类型是否足够。

有一个预定义的数字类型表:sys.odciNumberList,您可以在处理数字集合时使用它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM