码迷,mamicode.com
首页 > 数据库 > 详细

oracle 数据库 , 表中字段顺序修改

时间:2018-09-12 20:02:47      阅读:176      评论:0      收藏:0      [点我收藏+]

标签: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

oracle 数据库 , 表中字段顺序修改

标签:blog   system权限   服务   通过   rac   bing   字段   执行   mit   

原文地址:https://www.cnblogs.com/Uzai/p/9636246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!