Oracle8i &. lower version connect sys/passed. 0update col$ set name=xx where obj#=对象id and name = 字段 (一般不要这样用,会造成意想不到的结果) 注:最好是删除再建立新的列
39、把用户模式对象所在的表空间移到新的表空间 (1). create the new tablesapce (2). alter user test default tablespace test_data. (3). alter user test quota unlimited on test_data. (4). alter table the_table_name move tablespace test_data. 生成脚本: 0select alter table ||tname|| move tablespace test_date. from tab where tabtype= TABLE (5). rebuild the indexes.