判断序列是否为堆?为什么
问题描述:
判断序列是否为堆?为什么
答
你先上user_Sequences 视图中查询你想要创建的序列信息,有则不建,没有则建.
SELECT count(*) FROM All_Sequences where Sequences_name='大写序列名';
看count(*) 判断是否操作.
----