0
I have several connections configured on TNSNAMES.ORA
, and for some I cannot see any table if I expand the folder.
The user I am connecting has access, because I do the queries and insertions normally.
I found on the internet a tip to enable the filter option "Include synonyms", but it did not work.
I ran a test with PL/SQL Developer allroundautomations and in it the tables appear normally, but the tool is trial for 30 days.
As in this second tool the tables appear, I believe it is not some limitation of the user I use to connect me, but I noticed the following difference in TNSNAMES.ORA
: my strings that show the table use SERVICE_NAME
while the ones that don’t show tabelam use SID
.
String example showing the tables:
BDTESTE =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = serv01)(PORT = 12345))
)
(CONNECT_DATA =
(SID = BDTESTE)
)
)
String example that does not show tables:
BDTESTE2 =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.200)(PORT = 12346))
)
(CONNECT_DATA =
(SERVICE_NAME = bdteste2.xyz.com.br)
)
)