62 points

There’s a really fine line between needing a spreadsheet and needing a database and I’ve not yet found it. It’s probably more fuzzy than I realized but I have participated on so many programming projects that amounted to a spreadsheet that lived too long.

permalink
report
reply
58 points

Does it need to be accessed by multiple people? Does it need to be updated frequently? Does it need to be accessed programmatically? Does performance matter? If you answered “yes” to any of these questions, you should probably use a database.

If it’s something you interact with manually, has less than 100,000 rows, and is mostly static, then sure, use a spreadsheet.

I used to have some scripts to convert and merge between CSV and sqlite3. Even a lightweight db like sqlite3 has value. Google Sheets fills some of the gaps with its QUERY statement but I still find it a bit awkward to use a lot of the time.

permalink
report
parent
reply
12 points

Google sheets works just fine for accessed by multiple people.

The line is probably somewhere on machine vs human readable.

permalink
report
parent
reply
8 points
*

Performance. If you get 30k transactions per second don’t even SAY spreadsheet lol

permalink
report
parent
reply
8 points

I can answer yes to all of these questions but still use a spreadsheet. I understand your point, but I feel even with these the line is still gray.

I just checked and my largest spreadsheet currently has 14,300 lines across 12 tabs. Each tab contains the same information just pulled from a separate form. So each tab is linked to a form to update automatically when someone submits a new response. We then process these responses periodically throughout the day. Finished responses are color coded so a ton of formatting. Also 7+ people interacting with it daily.

Then we have a data team that aggregates the information weekly through a script that sends them a .csv with the aggregate data.

The spreadsheet (and subsequent forms) are updated twice a year. It was updated in June and will be updated again in December. It’s at 14k now and will continue to grow. We’ve been doing this through a few iterations and do not run into performance issues.

permalink
report
parent
reply
13 points

At some point you end up surpassing databases and end up with a giant pile of spreadsheets called a data warehouse

permalink
report
parent
reply
4 points
*

As soon as you stop data maintenance per hand, start using a db.

permalink
report
parent
reply
45 points

The article doesn’t seem to say what type of database they moved to, I’d like to imagine it’s an excel spreadsheet…

permalink
report
reply
14 points

The problem with the spreadsheet was rate limiting by Google. I like to imagine the have the spreadsheet copy and pasted. Then split the requests to two different spreadsheets, doubling the amount of requests they can do.

permalink
report
parent
reply
13 points

Dear god, parallelized excel spreadsheet databases!

permalink
report
parent
reply
1 point
Deleted by creator
permalink
report
parent
reply
37 points
*

We’ve finally evolved from Excel!

Edit: I saw a presentation on functional programming where the guy said, “Do you know what the most widely used functional programming language is and that the world would stop running without? Excel!” (or something to that effect)

permalink
report
reply
10 points

I can believe that. Where I work people use the Bi system to dump data out to Excel to then build the reports they want to see. Madness.

permalink
report
parent
reply
14 points

All the cool kids use Microsoft Access

permalink
report
reply
13 points

Not going to lie. I have made it really far using Google sheets as a database until I had to move to a full DB. Google Sheets is just an interface to a Google run DB anyways. A lot of the time I would just load sheets(tables) into data structures from a SQL library and use it like a regular database.

permalink
report
reply

Programmer Humor

!programmerhumor@lemmy.ml

Create post

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.

Community stats

  • 6.9K

    Monthly active users

  • 1.5K

    Posts

  • 34K

    Comments