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

Commit

Permalink
Merge pull request #113 from mtxr/oracle_pull_all_idents
Browse files Browse the repository at this point in the history
Pull Oracle identifiers in all schemas
  • Loading branch information
tkopets authored Jun 2, 2017
2 parents e78265b + a5bfe28 commit 337ce02
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.2
current_version = 0.9.3
files = SQLTools.py
tag = True
commit = True
Expand Down
2 changes: 1 addition & 1 deletion SQLTools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "v0.9.2"
__version__ = "v0.9.3"

import sys
import os
Expand Down
4 changes: 2 additions & 2 deletions SQLTools.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
"args": "{username}/{password}@\"(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST={host})(PORT={port})))(CONNECT_DATA=(SERVICE_NAME={service})))\"",
"queries": {
"desc" : {
"query": "select concat(concat(concat(concat('|', owner), '.'), table_name), '|') as tbls from all_tables where owner = sys_context('USERENV', 'CURRENT_SCHEMA');",
"query": "select concat(concat(concat(concat('|', owner), '.'), table_name), '|') as tbls from all_tables;",
"options": ["-S"]
},
"columns": {
"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');",
"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;",
"options": ["-S"]
},
"desc table": {
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"0.8.2": "messages/v0.8.2.md",
"0.9.0": "messages/v0.9.0.md",
"0.9.1": "messages/v0.9.1.md",
"0.9.2": "messages/v0.9.2.md"
"0.9.2": "messages/v0.9.2.md",
"0.9.3": "messages/v0.9.3.md"
}
8 changes: 8 additions & 0 deletions messages/v0.9.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## v0.9.3 Notes

### Improvements

* [Oracle] Get identifiers (tables, columns) in all schemas [#112](https://github.com/mtxr/SQLTools/issues/112)


Please restart Sublime Text after installing this update.

0 comments on commit 337ce02

Please sign in to comment.