OK then
select owner, constraint_name,table_name,index_owner,index_name
from dba_constraints
where (index_owner,index_name) in (select owner,index_name from dba_indexes where tablespace_name='YOUR_TABLESPACE IN UPPER CASE');

Then disable all these constraints and drop the tablespace. Later recreate the tablespace and reenable the constraints