-
Notifications
You must be signed in to change notification settings - Fork 0
SID (System Identifier)
Zhamri Che Ani edited this page Nov 4, 2024
·
1 revision
It is a unique name identifying a specific Oracle database instance on a server. When you connect to an Oracle database, the SID helps specify which database instance to connect to, especially when multiple instances are running on the same server.
Log in as a user with DBA privileges (such as SYS or SYSTEM).
SELECT instance_name AS SID FROM v$instance;Log in as a user with DBA privileges (such as SYS or SYSTEM).
GRANT SELECT ON v_$instance TO "zhamri";jdbc:oracle:thin:@localhost:1521:FREE