Skip to content
This repository was archived by the owner on Mar 12, 2020. It is now read-only.

Commit 337ce02

Browse files
authored
Merge pull request #113 from mtxr/oracle_pull_all_idents
Pull Oracle identifiers in all schemas
2 parents e78265b + a5bfe28 commit 337ce02

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.2
2+
current_version = 0.9.3
33
files = SQLTools.py
44
tag = True
55
commit = True

SQLTools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "v0.9.2"
1+
__version__ = "v0.9.3"
22

33
import sys
44
import os

SQLTools.sublime-settings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@
121121
"args": "{username}/{password}@\"(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST={host})(PORT={port})))(CONNECT_DATA=(SERVICE_NAME={service})))\"",
122122
"queries": {
123123
"desc" : {
124-
"query": "select concat(concat(concat(concat('|', owner), '.'), table_name), '|') as tbls from all_tables where owner = sys_context('USERENV', 'CURRENT_SCHEMA');",
124+
"query": "select concat(concat(concat(concat('|', owner), '.'), table_name), '|') as tbls from all_tables;",
125125
"options": ["-S"]
126126
},
127127
"columns": {
128-
"query": "select concat(concat(concat(concat('|', c.table_name), '.'), c.column_name), '|') as cols from all_tab_columns c inner join all_tables t ON c.owner = t.owner and c.table_name = t.table_name where c.owner = sys_context('USERENV', 'CURRENT_SCHEMA');",
128+
"query": "select concat(concat(concat(concat('|', c.table_name), '.'), c.column_name), '|') as cols from all_tab_columns c inner join all_tables t ON c.owner = t.owner and c.table_name = t.table_name;",
129129
"options": ["-S"]
130130
},
131131
"desc table": {

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"0.8.2": "messages/v0.8.2.md",
88
"0.9.0": "messages/v0.9.0.md",
99
"0.9.1": "messages/v0.9.1.md",
10-
"0.9.2": "messages/v0.9.2.md"
10+
"0.9.2": "messages/v0.9.2.md",
11+
"0.9.3": "messages/v0.9.3.md"
1112
}

messages/v0.9.3.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v0.9.3 Notes
2+
3+
### Improvements
4+
5+
* [Oracle] Get identifiers (tables, columns) in all schemas [#112](https://github.com/mtxr/SQLTools/issues/112)
6+
7+
8+
Please restart Sublime Text after installing this update.

0 commit comments

Comments
 (0)