问两个关于数据的初级问题

发布于 2021-10-08 05:09:21 字数 217 浏览 827 评论 9

我有两了初级问题,想请教一下大家:

1、我建了一张表后,比如叫 customer,可以用 alter table 增加和修改 column,不过却不能drop它们,删的时候,就提示说ORA-12988: 无法删除属于 SYS 的表中的列,请问是怎么回事。

2、我的 OracleManagerManagementServer 服务很奇怪,我启动以后,过段时间它会自动停止?我也不知道是为什么?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

回忆凄美了谁 2021-10-15 03:21:14

应该是:

alter table customer set unused (tex_exempt_ind);

泛泛之交 2021-10-15 03:11:36

你是在sys 下创建的 table?

坚持沉默 2021-10-15 03:11:23

alter table customer set unused column tax_exempt_ind ;

ORA-12988: 无法删除属于 SYS 的表中的列

奢望 2021-10-15 02:37:00

1。Marking Columns in a Table as Unused

Alter table dbatest set unused ( c_name );

2。Dropping a column or UnUsed Column from a Table

Alter table dbatest drop column ( c9 );

能否归途做我良人 2021-10-14 21:07:52

Error:        ORA-12988

Text:        cannot drop column from table owned by SYS

---------------------------------------------------------------------------

Cause:        An attempt was made to drop a column from a system table.

Action:        This action is not allowed

.

Have u solved it? give us your result!

天涯离梦残月幽梦 2021-10-14 14:44:11

你不能drop column,你可以查看一下你的参数compatible,必须在8.1.0以上。

深巷少女 2021-10-14 10:18:37

alter table **

drop column **

cascade constraints

or you may:

alter table **

set unused column **

因为看清所以看轻 2021-10-14 06:07:48

i can drop table ,but can't drop column;

my memory is 512.

悟红尘 2021-10-13 07:08:23

1. in 8i, there is new function that allow you to disable(hide)  columns. please search itpub.

2. I have met this before, personally i think that is because your memory.

good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文