- 论坛徽章:
- 11
|
求助!!一个关于dbschema的问题
本语句已在IDS7.31.UD8与9.40.FC4W3测试通过,在9.21.UC4上测试时有断言错误产生而故障,建议大家在测试系统中进行测试。
第一步:运行以下的sql语句
unload to idx.unl
select 'create '||
case
when a.idxtype = 'U' then 'unique index '
when a.clustered = 'C' then 'cluster index '
else 'index '
end||trim(a.idxname)||' on '||trim(b.tabname)||' ('||
case
when a.part1 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part1)
end||
case
when a.part2 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part2)
end||
case
when a.part3 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part3)
end||
case
when a.part4 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part4)
end||
case
when a.part5 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part5)
end||
case
when a.part6 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part6)
end||
case
when a.part7 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part7)
end||
case
when a.part8 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part
end||
case
when a.part9 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part9)
end||
case
when a.part10 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part10)
end||
case
when a.part11 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part11)
end||
case
when a.part12 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part12)
end||
case
when a.part13 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part13)
end||
case
when a.part14 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part14)
end||
case
when a.part15 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part15)
end||
case
when a.part16 = 0 then ''
else (select trim(c.colname)||',' from syscolumns c where c.tabid = a.tabid and c.colno = a.part16)
end||
');'
from sysindexes a,
systables b
where a.tabid >; 99 and a.idxname not matches " *"
and a.tabid = b.tabid and b.tabtype = 'T';
第二步:用vi编辑idx.unl,再运行g/,);|/s//);进行替换 |
|