I Need A Simple Database Tool.

Post Reply
User avatar
Yorick
Posts: 19881
Joined: Sat Mar 14, 2020 8:20 pm
Location: Paradise
Has thanked: 12555 times
Been thanked: 8517 times

I Need A Simple Database Tool.

Post by Yorick »

Just want a simple tool where I can create a database, or use one it comes with.
Then create a table. Then import data from a CSV file.
Then run my own SQL to crunch the numbers

Tried a few but so bloody complex or only a tool to access a remote DB
Tried SQL Server. What a nightmare :obscene-birdiedoublered: :obscene-birdiedoublered:

So, any simple jobbies out there?

Only need it once so a short trial is ok

Ta
User avatar
DefTrap
Posts: 4740
Joined: Tue Apr 14, 2020 8:23 am
Has thanked: 1838 times
Been thanked: 1468 times

Re: I Need A Simple Database Tool.

Post by DefTrap »

Personally I have some old copies of MSAccess knocking around so I'd probably do that. Googling, LibreOffice Base is probably a good alternative but I've never used it.

I imagine you can load CSV files into ChatGPT and tell it what you want. But your User Requirements provided so far have been rubbish. ;) so eff knows if that's suitable. Is this so you can track the number of pesetas left in your wallet?
User avatar
KungFooBob
Posts: 17483
Joined: Sat Mar 14, 2020 1:04 pm
Location: The content of this post is not AI generated.
Has thanked: 627 times
Been thanked: 9454 times

Re: I Need A Simple Database Tool.

Post by KungFooBob »

MS Access should do it, however I suspect you could probably do most of it in Excel if it's just a single table with no relationships.
User avatar
twids
Posts: 65
Joined: Thu Apr 02, 2020 2:25 pm
Has thanked: 65 times
Been thanked: 63 times

Re: I Need A Simple Database Tool.

Post by twids »

I'd probably spin up a CloudSql instance in https://cloud.google.com/, 5 mins to create and the same to start a free tier SQL DB, there are Postgress and MySql types or MongoDb derivatives if your a NoSql fan.

Otherwise install MySql locally and run things via the cli or install dbadmin as a UI.
roadster
Posts: 263
Joined: Sun Mar 05, 2023 9:05 am
Has thanked: 29 times
Been thanked: 214 times

Re: I Need A Simple Database Tool.

Post by roadster »

I would agree with the comment about using a spreadsheet and have used Libre office Calc with some interesting macros behind the data. Syntaxes such as Python Basic or Javascript are possible if you are familiar with them. Essentially the same as Excel. If you are the only user there is less need for data entry validation or concerns about consistency of relationships, scope etc. Expertise can be found on WWW but unfortunately documentation tends to be patchy with this open source stuff. Try https://help.libreoffice.org/latest/en- ... _help.html

If you need a relational database Libre Office also offers that but it was beyond what I needed so I haven't tried it.
Mussels
Posts: 5039
Joined: Mon Mar 16, 2020 9:02 pm
Has thanked: 781 times
Been thanked: 1068 times

Re: I Need A Simple Database Tool.

Post by Mussels »

Power BI is free and pretty good. The back end works like OLTP and the front like OLAP, should work fine if it's mainly for analysis and not transactional.
Needs WIndows though as it uses MS SQL server components.
Post Reply