调整数据库栏位的位置

首先

select object_id,object_name from all_objects where object_name =’IRP_MEDIA’ and owner=’MEQUIP’;

object_name是表名 owner是用户名

select obj#,col#,name from sys.col$ where obj#=90689;
查出 id值

update sys.col$ set col#=1 where obj#=90689 and name='MEDIAID';
update sys.col$ set col#=2 where obj#=90689 and name='MEDIATITLE';
update sys.col$ set col#=3 where obj#=90689 and name='MEDIAKEYWORDS';
update sys.col$ set col#=4 where obj#=90689 and name='MEDIAAUTHOR';
update sys.col$ set col#=5 where obj#=90689 and name='MEDIASTATUS';
update sys.col$ set col#=6 where obj#=90689 and name='MEDIAPUBTIME';

数据库要有DBA权限

你可能感兴趣的:(数据库-调节栏位,数据库,oracle)