So what's the best x-platform SQL client these days?
https://www.valentina-db.com/en/
it work well. Even work with Sql Server on osx!
41–50 of 94 posts
So what's the best x-platform SQL client these days?
https://www.valentina-db.com/en/
it work well. Even work with Sql Server on osx!
I have a slightly off-topic question: what tool do you recommend for creating Entity Relationship Diagrams (also known as database models)?
So what's the best x-platform SQL client these days?
DBeaver is solid and supports the most DBs with lots of handy features: https://dbeaver.io/ Jetbrains Datagrip is popular too, more intelligent but less DBs than DBeaver: https://www.jetbrains.com/datagrip/ If you want a web-based tool, especially for Postgres, then OmniDB is a good choice: https://www.omnidb.org/en/
DBeaver has support for many databases through JDBC.
Does this app actually export to CSV correctly, because MySQL Workbench and SSMS both screw it up?
Though I'm not familiar with the CSV export of those two tools, I've had adventures in CSV parsing from other tools. How do they screw it up? Is there a canonical "correct" way defined somewhere?
a) truncation of data b) removal of line breaks c) not escaping enclosing values, ex. " as "" d) using \n or other values in place of actual line breaks or tabs e) using \N for NULL values (which isn't too bad, but it would be nice to be able to configure this) f) in general not complying with https://tools.ietf.org/html/rfc4180
Is there a gui client that can do both "normal" databases (like postgres and oracle) and Hive or Presto?
I have a slightly off-topic question: what tool do you recommend for creating Entity Relationship Diagrams (also known as database models)?
I use Enterprise Architect at work. If you have money its worth it.
Can vouch for it, one of the best experiences with enterprise modelling tools.
If I need a GUI for MySQL, I find MySQL Workbench to work great: https://www.mysql.com/products/workbench/ But in 90% of cases, I do find that the cli sql client for your DB of choice is sufficient.
I wish I had the same experience as you. I use MW at my work and it is constantly crashing, hanging, freezing, and otherwise puttering out. We don't have a stupidly large database either. Lately I've been hounding my team to switch to another product, such as HeidiSQL or DBeaver.
Does this app actually export to CSV correctly, because MySQL Workbench and SSMS both screw it up?
Does this app actually export to CSV correctly, because MySQL Workbench and SSMS both screw it up?
Though I'm not familiar with the CSV export of those two tools, I've had adventures in CSV parsing from other tools. How do they screw it up? Is there a canonical "correct" way defined somewhere?