Hi
Toad 14.1 and 15 also.
SQL> create table raulkaubi.proov2(id number) tablespace users pctfree 0;
Table created.
SQL> col owner for a15;
col table_name for a15;
select owner, table_name, pct_free, pct_used from dba_tables where table_name in ('PROOV2');
OWNER TABLE_NAME PCT_FREE PCT_USED
--------------- --------------- ---------- ----------
RAULKAUBI PROOV2 0
SQL> set pagesize 0
set lines 200
set long 90000
set feedback off
set echo off
select dbms_metadata.get_ddl('TABLE','PROOV2','RAULKAUBI') from dual;
CREATE TABLE "RAULKAUBI"."PROOV2"
( "ID" NUMBER
) SEGMENT CREATION DEFERRED
PCTFREE 0 PCTUSED 40 INITRANS 1 MAXTRANS 255
NOCOMPRESS LOGGING
TABLESPACE "USERS"
So PCT_USED is DEFAULT (40% seems like DEFAULT value for oracle)!
And PCT_FREE is specified 0.
Here is what TOAD shows me.
When I alter table, seems like something is just the opposite.
This is quite interesting. Toad indeed shows correct information for some tables. But whenever I create a new table, this is what happens at the moment.
Regards
Raul