oracle list service names

Solutions on MaxInterview for oracle list service names by the best coders in the world

showing results for - "oracle list service names"
Daniel
11 Apr 2018
1SELECT VALUE FROM V$PARAMETER WHERE NAME = 'service_names';
2SELECT NAME FROM V$SERVICES;
3SELECT NAME FROM V$ACTIVE_SERVICES;
4SELECT * FROM ALL_SERVICES;
Hamza
03 Apr 2016
1select name from V$SERVICES;
2select name from V$ACTIVE_SERVICES;
3