- Latest version:VMware Workstation 9.0.2 Build 1031769
- Requirements:Windows XP / 2003 / Vista / Windows 7 / Windows 8
- File size / license:429.91 MB / Commercial Trial
http://www.filehorse.com/download-vmware-workstation/download/
"Science is more than a body of knowledge; it is a way of thinking" Carl Sagan Even DBA ;-)
SQL> alter user xs$null default tablespace TBS_1 quota unlimited on TBS_1;
alter user xs$null default tablespace TBS_1 quota unlimited on TBS_1
*
ERROR at line 1:
ORA-01031: insufficient privileges
But still you can change it by setting the default tablespace name with out giving XS$NULL in the statement . SQL> alter database default tablespace TBS_1;
Database altered.
SQL> select default_tablespace from dba_users where username='XS$NULL';
DEFAULT_TABLESPACE
------------------------------
TBS_1
Ref: MOS ID 1325766.1, “nobody eve user SYS can alter xs$null“.