Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set verify off
prompt Enter the name of the Oracle user that owns
accept owner_name prompt " the table with DEFAULTs to check : "
prompt
accept tab_name prompt "Enter the name of &owner_name's table to check for DEFAULT values: "
select owner,table_name,column_name,data_default
from all_tab_cols
where upper('&owner_name') = owner
and upper('&tab_name') = table_name
and data_default is not null;
@show_defaults
Enter the name of the Oracle user that owns
the table with DEFAULTs to check : test
Enter the name of test's table to check for DEFAULT values: task_type
OWNER TABLE_NAME COLUMN_NAME DATA_DEFAULT
--------------- --------------- --------------- ---------------
BGGT USERFIELD REQUIRED 'F'