Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select tablespace_name
from user_segments
where segment_name = 'S_EMP';
TABLESPACE_NAME
---------------
DATA2
select segment_name, tablespace_name
from user_segments
where segment_name LIKE 'S_E%';
SEGMENT_NAME TABLESPACE_NAME
--------------- ---------------
S_EMP3 DATA1
STEVE_TARGET DATA1
STEVE_SOURCE DATA1
S_EMP DATA2
S_EMP2 DATA1
S_EMP_ID_PK DATA1
S_EMP_USERID_UK DATA1
S_EMP_ID_PK1 DATA1