In my project we have used temporary tablespace say X_TEMP
,assume below is tablepsace code , I have found this code in tablespace section
CREATE TEMPORARY TABLESPACE X_TEMP
TEMPFILE '/oradata/mytemp_01.tmp' SIZE 800M
EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
Now I want to check how it is getting called and where I have used this X_TEMP
in my procedure,functions,code anywhere where ?
Any idea how can find where We have used it ?