Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Oracle 数据库中,
假设有两个存储过程 并且存储过程sp1正在调用另一个存储过程sp2
sp1
sp2
问题是:
被叫sp2方能否访问该sp1's temp表?
sp1's
temp
我想你的意思是:数据库中有 tmp 表,sp1 填充表,将能够 sp2 访问(读取或更改)这些数据?
是的,它会。(当然,如果 sp1 在调用 sp2 之前没有“提交”)。
Oracle 临时表用于在会话或事务期间存储数据。Sp1 和 sp2 都在同一个会话中工作。