We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is something strange happening for me when I try to add comments to a table column:
~> create table tmp_table2 ( col Integer) ; ~> add_comment column tmp_table2.col 'This ' <class 'cx_Oracle.DatabaseError'> ORA-00942: table or view does not exist
However, this appears to work with:
~> create table tmp ( col Integer) ; ~> add_comment column tmp.col 'This ' Comment added to column: col in table tmp
Also, I think there might be an issue with creating comments on tables specified with usernames (unconfirmed).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is something strange happening for me when I try to add comments to a table column:
However, this appears to work with:
Also, I think there might be an issue with creating comments on tables specified with usernames (unconfirmed).
The text was updated successfully, but these errors were encountered: