1.查看某用户下所有对象的信息:

SELECT owner, object_type, status, COUNT(*) count# 
FROM all_objects 
where owner='xxx'
GROUP BY owner, object_type, status
order by 2; 
View Code

相关文章:

  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-13
  • 2021-06-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2022-01-22
  • 2021-05-16
  • 2022-12-23
相关资源
相似解决方案