Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Database names?
You probably are asking how to get the names of all the schema names that
are on a particular instance. Log in as SYS or SYSTEM and run this query:
SELECT username
FROM dba_users;
This will list all the schemas that exist on that instance. When you install the 9i starter database, you get a bunch of schemas:
USERNAME
QS_CS QS_CB QS_CBADM QS_OS
![]() |
![]() |