Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b53032 commit f6fbba0Copy full SHA for f6fbba0
sqldev/src/main/java/org/utplsql/sqldev/dal/UtplsqlDao.xtend
@@ -121,9 +121,17 @@ class UtplsqlDao {
121
if (cachedDbaViewAccessible === null) {
122
try {
123
val sql = '''
124
- SELECT 1
+ SELECT 1 AS dummy
125
FROM dba_objects
126
WHERE 1=2
127
+ UNION ALL
128
+ SELECT 1
129
+ FROM dba_synonyms
130
+ WHERE 1=2
131
132
133
+ FROM dba_dependencies
134
135
'''
136
jdbcTemplate.execute(sql)
137
cachedDbaViewAccessible = true
0 commit comments