-- 1、更改表中字段长度--可修改数据库表的字段长度
alter table 
-- 1、更改表中字段长度--可修改数据库表的字段长度
alter table 表名 modify 字段名 varchar2(字段长度);   

-- 2、查询md_column中要改单据元数据中的所有字段信息
select * from MD_COLUMN where tableid = '表名'

-- 3、修改要修改的元数据字段长度
update MD_COLUMN set columnlength = 字段长度 where id = '表名@@@字段名'

4、在md_class表中查找对应的id
  select * from md_class where defaulttablename='er_bxzb'
在结果集中,查找displayname为‘报销单’的id的值   d9b9f860-4dc7-47fa-a7d5-7a5d91f39290

6、查看在表md_property字段attrlength长度并修改
  select * from md_property where classid='d9b9f860-4dc7-47fa-a7d5-7a5d91f39290'  and name = 'zyx1';
  update md_property set attrlength=500 where classid = 'd9b9f860-4dc7-47fa-a7d5-7a5d91f39290' and name = 'zyx1';
commit;

最后需要重启中间件 modify 字段名 varchar2(字段长度);   

-- 2、查询md_column中要改单据元数据中的所有字段信息
select * from MD_COLUMN where tableid = '表名'

-- 3、修改要修改的元数据字段长度
update MD_COLUMN set columnlength = 字段长度 where id = '表名@@@字段名'

4、在md_class表中查找对应的id
  select * from md_class where defaulttablename='er_bxzb'
在结果集中,查找displayname为‘报销单’的id的值   d9b9f860-4dc7-47fa-a7d5-7a5d91f39290

6、查看在表md_property字段attrlength长度并修改
  select * from md_property where classid='d9b9f860-4dc7-47fa-a7d5-7a5d91f39290'  and name = 'zyx1';
  update md_property set attrlength=500 where classid = 'd9b9f860-4dc7-47fa-a7d5-7a5d91f39290' and name = 'zyx1';
commit;

最后需要重启中间件
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐