You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The common column in Oracle's all_users was added in Oracle Database 12c Release 1 (12.1). In earlier versions of Oracle Database (11g and earlier), the common column does not exist in the all_users view. In my case, it does.
autoload/db_ui/schemas.vim 119 line
Modify it like below.
Delete line 126 \ AND U.common = 'NO'
Delete line 137 \ WHERE U.common = 'NO'
Modify line 150 \ 'schemes_query': printf(s:oracle_args, "SELECT /*csv*/ username FROM all_users ORDER BY username"),
Hope this helps someone.
The text was updated successfully, but these errors were encountered:
The vim-db-ui plugin now supports Oracle Legacy Mode configuration through a global variable. You can enable or disable this mode in your Neovim configuration file.
For init.vim Users
To enable or disable legacy mode, add the following lines to your init.vim:
Thanks for making such a good plugin.
The common column in Oracle's all_users was added in Oracle Database 12c Release 1 (12.1). In earlier versions of Oracle Database (11g and earlier), the common column does not exist in the all_users view. In my case, it does.
autoload/db_ui/schemas.vim 119 line
Modify it like below.
Delete line 126
\ AND U.common = 'NO'
Delete line 137
\ WHERE U.common = 'NO'
Modify line 150
\ 'schemes_query': printf(s:oracle_args, "SELECT /*csv*/ username FROM all_users ORDER BY username"),
Hope this helps someone.
The text was updated successfully, but these errors were encountered: