Added sample configs.

Added sample configs.
This commit is contained in:
Scott Sutherland
2024-09-23 10:31:24 -05:00
committed by GitHub
parent 815004256f
commit 1597dffbdb
35 changed files with 2181 additions and 0 deletions

View File

@ -0,0 +1,21 @@
MYDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = mydbserver.example.com)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = mydbservice)
)
)
(USER = myusername)
(PASSWORD = mypassword)
MYDB_ALIAS =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = mydbserver.example.com)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = mydbservice)
)
)
(USER = anotheruser)
(PASSWORD = anotherpassword)