Ernesto Cianciotta
Ernesto Cianciotta
Hi @nppafonso, with the feature described in the issue #20, it will be possible to copy all values for the selected column and paste them in Excel, for instance. Does...
Hi @Aklil the support for Postgres is not that simple now. I see that there is a dedicated extension for connecting to Postgres databases, so I need to investigate on...
The analysis of the extension below can be useful for the implementation of this feature: https://github.com/microsoft/azuredatastudio-postgresql
Queries for retrieving metadata about schemas, tables and columns. ```sql -- Get the list of schemas select * from information_schema.schemata where schema_owner = 'pg_database_owner'; -- Get the list of tables...
Queries for retrieving metadata about schemas, tables and columns. ```sql -- Get the list of schemas SELECT * FROM information_schema.schemata; -- Get the list of tables SELECT * FROM information_schema.tables...
Feature implemented in version 0.8.0.
Feature implemented in this [commit](https://github.com/ernstc/SqlDataInspector/commit/23885fb2246aed78a84283bafcac01aa3f6421c0)
Thank you for this feature request. Actually the results are loaded only for the selected page, so if you mean searching data in the loaded page results it should not...
It's not an issue of VS Code or Azure Data Studio. The Grid result that you see in the extension is part of the extension and has limited capabilities because...
The "Inspect data" command appears only the database context menu and it works only at the database level. If you select a table and then you run the command "inspect...