Your engineering team uses Excel on Sharepoint as a database. No one else on your team is a programmer. You have to replace the Excel “database” with an actual database. Everyone needs to be able to freely, easily use this database. You have only 8 hours. What do you do?

@wirelessmouse Depends on what that data actually is :P but there's a lot of generic multi-user 'database' systems that just use the LAMP stack, I've used a number of them over the years, not sure what projects are still active, but they're out there.

If the data is of a specific type, depending on what it is, there might be a great solution already built.

https://github.com/nuBuilder/nuBuilder-4.5 stuff like this exists, there's tons of them out there, some complex, some /super/ simple.

GitHub - nuBuilder/nuBuilder-4.5: nuBuilder Forte 4.5

nuBuilder Forte 4.5. Contribute to nuBuilder/nuBuilder-4.5 development by creating an account on GitHub.

GitHub
@Xipher Small database. A few tables. Dozens of fields. Thousands of records. ~10 users with write access.
@Xipher My main challenge is the users are all accustomed to editing data freehand in Excel. If they cannot just copy/paste data in and out of the database that easily, they just won’t.
@wirelessmouse Just create a form that lets them copy/paste the data directly, literally just show them a row/column view of the data, use the builder to add a little validation along with field types and you'll have mostly sane data no matter what people try and do.

@wirelessmouse Tell you what.

PHPMyAdmin.

Its literally rows and columns, you can double click, copy/paste, its as basic as possible and it runs everywhere on everything :P