I created database through database configuration assistant.
I am not able to create the tables in that db. When i try to create through wizard it shows following error message.
ora-02195 attempt to create PERMANENT object in temporary tablespace.
it's because the tablespace in which you try to create a table is in TEMPORARY mode (contents column in dba_tablespaces), which means that you cannot create an object in that tablespace.
2 solutions :
1) change the tablespace in which you create the object
2) change your tablespace mode :
alter tablespace ... permanent;
Bookmarks