摘要:
-- 删除普通索引 drop index 索引名字 --创建普通索引 create index 索引名 on 表名(索引对应的列名); --删除主键索引 alter table 表名 drop constraint 索引名 --创建主键索引 alter table 表名 add constraint 阅读全文
摘要:
查询某一个表都在哪些存储过程中使用到 SELECT DISTINCT * FROM user_source WHERE TYPE = 'PROCEDURE' AND upper(text) LIKE '%表名%'; 怎么解除表锁 --查看被锁表信息 SQL > select sess.sid,ses 阅读全文