1.      必须以管理员身份登录;
2.      sequence_owner必须为大写,不管你的用户名是否大写。只有大写才能识别。
--查看当前用户的所有序列   
select SEQUENCE_OWNER,SEQUENCE_NAME from dba_sequences where sequence_owner='用户名';  
  
  
--查询当前用户的序列总数   
select count(*) from dba_sequences where sequence_owner='用户名';  

相关文章:

  • 2021-10-07
  • 2022-02-17
  • 2022-12-23
  • 2021-12-01
  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-29
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案