2026-03-12 20:23:15
This commit is contained in:
16
timhall/monitoring/default_tablespaces.sql
Normal file
16
timhall/monitoring/default_tablespaces.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/monitoring/default_tablespaces.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays the default temporary and permanent tablespaces.
|
||||
-- Requirements : Access to the DATABASE_PROPERTIES views.
|
||||
-- Call Syntax : @default_tablespaces
|
||||
-- Last Modified: 04/06/2019
|
||||
-- -----------------------------------------------------------------------------------
|
||||
COLUMN property_name FORMAT A30
|
||||
COLUMN property_value FORMAT A30
|
||||
COLUMN description FORMAT A50
|
||||
SET LINESIZE 200
|
||||
|
||||
SELECT *
|
||||
FROM database_properties
|
||||
WHERE property_name like '%TABLESPACE';
|
||||
Reference in New Issue
Block a user