Show HN: OctoSQL – Query and join multiple databases and files, written in Go
31–40 of 74 posts
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#32A small tangential comment: In the README you mention octopi. Although not wrong as per the Oxford English Dictionary which lists octopuses, octopi and octopodes (in that order), normally it is better to use octopuses.
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#33Earlier quoted context omitted.
Generally, I make use of file_fdw module of Postgres to achieve this. https://www.postgresql.org/docs/11/file-fdw.html
I wonder if you or the other Postgres users here could give me some tips. What would be the best way to use the data from a huge Excel file into my web apps? Currently I'm converting it to CSV and use `BULK INSERT` with MSSQL. I know that with MSSQL I can also use Excel files as "external database" but AFAIK, Excel files are not indexed and are super slow when used as an "external database". I wouldn't mind switching…
https://www.cybertec-postgresql.com/en/tech-preview-improvin...
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#34Consider adding a server/daemon with jobs and scheduling. This would let people copy and reconcile data between systems, or prep data at night, etc... It could also save indexes and table statistics between queries.
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#35A small tangential comment: In the README you mention octopi. Although not wrong as per the Oxford English Dictionary which lists octopuses, octopi and octopodes (in that order), normally it is better to use octopuses.
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#36Earlier quoted context omitted.
Generally, I make use of file_fdw module of Postgres to achieve this. https://www.postgresql.org/docs/11/file-fdw.html
I wonder if you or the other Postgres users here could give me some tips. What would be the best way to use the data from a huge Excel file into my web apps? Currently I'm converting it to CSV and use `BULK INSERT` with MSSQL. I know that with MSSQL I can also use Excel files as "external database" but AFAIK, Excel files are not indexed and are super slow when used as an "external database". I wouldn't mind switching…
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#37Earlier quoted context omitted.
Apache Drill vs Calcite? Seem very similar.
Lots of Apache projects have very similar counterparts, which has always puzzled me - I wonder if there are publicly available official selection criteria for new Apache projects?
The ASF's mission is not focused on bringing one best-of-breed product in every category. More, the ASF is focused on the stewardship and delivery of the software. They are more interested in the organization and community surrounding the project than the code itself.
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#38Earlier quoted context omitted.
Generally, I make use of file_fdw module of Postgres to achieve this. https://www.postgresql.org/docs/11/file-fdw.html
I wonder if you or the other Postgres users here could give me some tips. What would be the best way to use the data from a huge Excel file into my web apps? Currently I'm converting it to CSV and use `BULK INSERT` with MSSQL. I know that with MSSQL I can also use Excel files as "external database" but AFAIK, Excel files are not indexed and are super slow when used as an "external database". I wouldn't mind switching…
http://www.postgresqltutorial.com/import-csv-file-into-posgr...
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#39When joining tables from 2 different data sources, is the join performed by loading two tables in full into memory ? If yes - any plans on improving this, so that it does not OOM or kill the remote database ? If no - how do you handle this case ?
No, currently we support only lookup joins. We're planning to add table/hash-joins based on table-size heuristics.
Re: Show HN: OctoSQL – Query and join multiple databases and files, written in Go
#40Hey, one of the authors here. The motivation behind this project is that I always wanted a simple commandline tool allowing me to join data from different places, without needing to set up stuff like presto or spark. On another hand, I never encountered any tool which allows me to easily query csv and json data using SQL (which at least in my opinion is fairly ergonomic to use). This started as an university project,…
Generally, I make use of file_fdw module of Postgres to achieve this. https://www.postgresql.org/docs/11/file-fdw.html