标签:blog system权限 服务 通过 rac bing 字段 执行 mit
1.首先需要sys或者system权限操作
2.查询需要更改的表的ID
select object_id from all_objects where owner = ‘用户名‘ and object_name = ‘tableName‘; 注:表名需要大写
3.通过ID查询出该表所有字段的顺序
select obj# , col# , name from sys.col$ where obj# = ‘表ID‘ order by col#
4.修改顺序:更改目标行 , 更改受影响的行
update sys.col$ set col# = 1 where obj# = 表ID and name = ‘‘; 注:必须是sys权限执行才行
5.commit 提交/查询表有无变化
6.重启oracle服务
--lunix下重启oracle服务
https://www.cnblogs.com/lingbing/p/6071745.html
标签:blog system权限 服务 通过 rac bing 字段 执行 mit
原文地址:https://www.cnblogs.com/Uzai/p/9636246.html