2026-03-12 20:23:15
This commit is contained in:
16
timhall/10g/services.sql
Normal file
16
timhall/10g/services.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/monitoring/services.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays information about database services.
|
||||
-- Requirements : Access to the DBA views.
|
||||
-- Call Syntax : @services
|
||||
-- Last Modified: 05/11/2004
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET LINESIZE 200
|
||||
COLUMN name FORMAT A30
|
||||
COLUMN network_name FORMAT A50
|
||||
|
||||
SELECT name,
|
||||
network_name
|
||||
FROM dba_services
|
||||
ORDER BY name;
|
||||
Reference in New Issue
Block a user