8i | 9i | 10g | 11g | 12c | 13c | 18c | 19c | 21c | 23c | Misc | PL/SQL | SQL | RAC | WebLogic | Linux

Home » Articles » 12c » Here

Invisible Columns in Oracle Database 12c Release 1 (12.1)

Invisible columns can be useful during application migrations. Making new columns invisible means they won't be seen by any existing applications, but can still be referenced by any new applications, making the online migration of applications much simpler.

Related articles.

Invisible Columns

Making a column invisible means it is no longer seen by SELECT * FROM, SQL*Plus or OCI describes and %ROWTYPE attributes.

drop table tab1 purge;

create table tab1 (
  id          number,
  description varchar2(50) invisible
);

desc tab1;
 Name					   Null?    Type
 ----------------------------------------- -------- ----------------------------
 ID						    NUMBER

SQL>

insert into tab1 values (1);
commit;

select * from tab1;

	ID
----------
	 1

SQL>

Invisible columns are still available for all actions, provided they are named explicitly.

insert into tab1 (id, description) values (2, 'two');
commit;

select id, description
from   tab1;

	ID DESCRIPTION
---------- --------------------------------------------------
	 1
	 2 TWO

SQL>

Some miscellaneous facts about invisible columns include the following.

We can display invisible columns using the DESCRIBE command by setting the COLINVISIBLE option.

SQL> desc tab1
 Name						       Null?	Type
 ----------------------------------------------------- -------- ------------------------------------
 ID								NUMBER

SQL> set colinvisible on
SQL> desc tab1
 Name						       Null?	Type
 ----------------------------------------------------- -------- ------------------------------------
 ID								NUMBER
 DESCRIPTION (INVISIBLE)					VARCHAR2(50)

SQL>

Invisible Columns and Column Ordering

Invisible columns are not assigned a column order, so if an invisible column is made visible it is listed as the last column of the table.

drop table tab1 purge;

create table tab1 (
  a number,
  b number,
  c number invisible
);

column column_name format a15

select column_id,
       column_name,
       hidden_column
from   user_tab_cols
where  table_name = 'TAB1'
order by column_id;

 COLUMN_ID COLUMN_NAME	   HID
---------- --------------- ---
	 1 A		   NO
	 2 B		   NO
	   C		   YES

SQL> 

alter table tab1 modify b invisible;
alter table tab1 modify c visible;

select column_id,
       column_name,
       hidden_column
from   user_tab_cols
where  table_name = 'TAB1'
order by column_id;

 COLUMN_ID COLUMN_NAME	   HID
---------- --------------- ---
	 1 A		   NO
	 2 C		   NO
	   B		   YES

SQL>

alter table tab1 modify b visible;

select column_id,
       column_name,
       hidden_column
from   user_tab_cols
where  table_name = 'TAB1'
order by column_id;

 COLUMN_ID COLUMN_NAME	   HID
---------- --------------- ---
	 1 A		   NO
	 2 C		   NO
	 3 B		   NO

SQL>

Mandatory Invisible Columns

Making a column invisible does not affect its mandatory/optional status, as shown in the example below.

drop table tab1 purge;

create table tab1 (
  id          number not null,
  description varchar2(50) not null,
  created_date date invisible not null
);

column column_name format a20

select column_id,
       column_name,
       nullable,
       hidden_column
from   user_tab_cols
where  table_name = 'TAB1'
order by column_id;

 COLUMN_ID COLUMN_NAME		N HID
---------- -------------------- - ---
	 1 ID			N NO
	 2 DESCRIPTION		N NO
	   CREATED_DATE 	N YES

SQL>

insert into tab1 values (1, 'one');
*
ERROR at line 1:
ORA-01400: cannot insert NULL into ("TEST"."TAB1"."CREATED_DATE")

SQL>

alter table tab1 modify created_date null;
insert into tab1 values (1, 'one');

1 row created.

SQL>

For more information see:

Hope this helps. Regards Tim...

Back to the Top.