为什么 PL/SQL 开发人员将可重用标记为 oracle 中的关键字

Why PL/SQL developer mark reusable as keyword in oracle

我正在与 PL/SQL 开发人员一起使用 Oracle 12.1,我注意到 reusable 是保留关键字。

我在 oracle 中找不到 reusable 关键字的任何文档,并且在 Oracle/PL/SQL's Reserved Words

中不存在

我找到了REUSE关于文件管理的关键词

Specify REUSE to allow Oracle to reuse an existing file. You must specify REUSE if you specify a filename that already exists.

我在 PL/SQL Developer 11.0 中也找不到它 用户指南

可以使用这个“关键字”来创建table

create table reusable(reusable varchar2(1))

那么为什么 reusable 被标记为关键字并被谁标记?

在 Oracle SQL 开发人员中不会发生这种情况

编辑

我只找到了Serially Reusable

A package that is marked SERIALLY_REUSABLE

解决方法:

从 PL/SQL Developer 安装目录中的 default.kwf 中删除 REUSABLE 行。