最方便的方法就是 drop user aaa cascade;然后重建用户。如果你不想删除后重建用户,那就:select 'drop '  || object_type || ' ' || object_name || ';' from user_objects;然后执行得出的结果即可。