Import functionality not visible
Description
hi,
I am using academic license, and I am not able to use any import functionality on the cloudbeaver deployed on k8s. License id: “CB-3S1MUZYS-ZHSE”
Below is the version I am using:
DBeaver Version
CloudBeaver EE Web Server
Operating System
No response
Database and driver
Database driver:
Steps to reproduce
Here is the screenshot which shows that import functionality is not visible:
Additional context
No response
I will transfer the issue to the corresponding repository https://github.com/dbeaver/cloudbeaver
Hi @vmeet24 As I can see, your table is in read-only mode.
- Open connection settings and check Expert section. 'Read-only' should be unmarked.
- Check user privileges
SELECT table_name, privilege_type
FROM information_schema.role_table_grants
WHERE grantee = 'yugabyte'
AND table_schema = 'alarm_management';
Hi @EvgeniaBzzz ,
Thank you for the response.
- The read-only checkbox is already unchecked.
- Owner of the schema is different than yugabyte. However, for the rest of the schemas, the owner is yugabyte and still I am not able to see the import button. For e.g. I am able to see the privileges for other schemas (as shown below):
One of the tables from the schema:
For the above table I am not able to see the import button.
Hello @vmeet24
https://github.com/dbeaver/cloudbeaver/wiki/Data-import#configuration-details
Your table must have primary/unique keys to import data into the table. Or you can update the CloudBeaver version to 25.1.0, we have more abilities in this version for data import.
@LonwoLonwo After updating the version I can see the import functionality. Thank you so much.