ORACLE数据库常见操作

版权声明:转载请注明出处 https://blog.csdn.net/qq_26769591/article/details/85532302

摘要:
常用的一些数据库操作

1.查看表空间

oracle 查看用户所在的表空间 - yitian20000的专栏 - CSDN博客: https://blog.csdn.net/yitian20000/article/details/6256716

2.查看存储过程

oracle查看创建了哪些存储过程 - 大数据技术杂谈 - CSDN博客: https://blog.csdn.net/u010022051/article/details/53287382

3.只查看第一行

select * from tab_name where rownum ❤️

在这里插入图片描述

4.查看存储过程的内容:

select text from user_source where name=upper(‘sync_dept’) order by line;
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_26769591/article/details/85532302