this post was submitted on 31 Oct 2025
31 points (97.0% liked)
Programming
23332 readers
329 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
What you use depends on your requirements. Excel can be just the right thing if it gets the job done, it has some great features, and with some outside help you can do basic versioning and whatever else you may need.
Databases are best for when you need:
Documented Approval processes
Documented versioning
Interfaces with other IT tools
Managing LOTS of various types of data
Metadata
Especially the last two are where a database shines. If you have lots of different types of data/files, then there is no good way to keep them organized in a static file structure. By adding tags to them (like date created, file type, priority, status, customer, project name, etc.) you can later search and filter based on what you are looking for. Need all files related to a certain project with the status "active"? Easy, just tell the database that it should filter based on those tags and boom, done.
SQL is a great place to start if you want to learn about programming. If you are just looking to stay organized, then programs like obsidian are awesome. You can very easily make a database out of obsidian with the free tutorials for plugins like dataview and templater.