DjamgaMind: Audio Intelligence for the C-Suite (Daily AI News, Energy, Healthcare, Finance)
Full-Stack AI Intelligence. Zero Noise.The definitive audio briefing for the C-Suite and AI Architects. From Daily News and Strategic Deep Dives to high-density Industrial & Regulatory Intelligence—decoded at the speed of the AI era. . 👉 Start your specialized audio briefing today at Djamgamind.com
AI Jobs and Career
I wanted to share an exciting opportunity for those of you looking to advance your careers in the AI space. You know how rapidly the landscape is evolving, and finding the right fit can be a challenge. That's why I'm excited about Mercor – they're a platform specifically designed to connect top-tier AI talent with leading companies. Whether you're a data scientist, machine learning engineer, or something else entirely, Mercor can help you find your next big role. If you're ready to take the next step in your AI career, check them out through my referral link: https://work.mercor.com/?referralCode=82d5f4e3-e1a3-4064-963f-c197bb2c8db1. It's a fantastic resource, and I encourage you to explore the opportunities they have available.
- Full Stack Engineer [$150K-$220K]
- Software Engineer, Tooling & AI Workflow, Contract [$90/hour]
- DevOps Engineer, India, Contract [$90/hour]
- More AI Jobs Opportunitieshere
| Job Title | Status | Pay |
|---|---|---|
| Full-Stack Engineer | Strong match, Full-time | $150K - $220K / year |
| Developer Experience and Productivity Engineer | Pre-qualified, Full-time | $160K - $300K / year |
| Software Engineer - Tooling & AI Workflows (Contract) | Contract | $90 / hour |
| DevOps Engineer (India) | Full-time | $20K - $50K / year |
| Senior Full-Stack Engineer | Full-time | $2.8K - $4K / week |
| Enterprise IT & Cloud Domain Expert - India | Contract | $20 - $30 / hour |
| Senior Software Engineer | Contract | $100 - $200 / hour |
| Senior Software Engineer | Pre-qualified, Full-time | $150K - $300K / year |
| Senior Full-Stack Engineer: Latin America | Full-time | $1.6K - $2.1K / week |
| Software Engineering Expert | Contract | $50 - $150 / hour |
| Generalist Video Annotators | Contract | $45 / hour |
| Generalist Writing Expert | Contract | $45 / hour |
| Editors, Fact Checkers, & Data Quality Reviewers | Contract | $50 - $60 / hour |
| Multilingual Expert | Contract | $54 / hour |
| Mathematics Expert (PhD) | Contract | $60 - $80 / hour |
| Software Engineer - India | Contract | $20 - $45 / hour |
| Physics Expert (PhD) | Contract | $60 - $80 / hour |
| Finance Expert | Contract | $150 / hour |
| Designers | Contract | $50 - $70 / hour |
| Chemistry Expert (PhD) | Contract | $60 - $80 / hour |
How does a database handle pagination?

It doesn’t. First, a database is a collection of related data, so I assume you mean DBMS or database language.
Second, pagination is generally a function of the front-end and/or middleware, not the database layer.
But some database languages provide helpful facilities that aide in implementing pagination. For example, many SQL dialects provide LIMIT and OFFSET clauses that can be used to emit up to n rows starting at a given row number. I.e., a “page” of rows. If the query results are sorted via ORDER BY and are generally unchanged between successive invocations, then that can be used to implement pagination.
That may not be the most efficient or effective implementation, though.

So how do you propose pagination should be done?
On context of web apps , let’s say there are 100 mn users. One cannot dump all the users in response.
Cache database query results in the middleware layer using Redis or similar and serve out pages of rows from that.
AI-Powered Professional Certification Quiz Platform
Web|iOs|Android|Windows
Are you passionate about AI and looking for your next career challenge? In the fast-evolving world of artificial intelligence, connecting with the right opportunities can make all the difference. We're excited to recommend Mercor, a premier platform dedicated to bridging the gap between exceptional AI professionals and innovative companies.
Whether you're seeking roles in machine learning, data science, or other cutting-edge AI fields, Mercor offers a streamlined path to your ideal position. Explore the possibilities and accelerate your AI career by visiting Mercor through our exclusive referral link:
Find Your AI Dream Job on Mercor
Your next big opportunity in AI could be just a click away!
What if you have 30, 000 rows plus, do you fetch all of that from the database and cache in Redis?
I feel the most efficient solution is still offset and limit. It doesn’t make sense to use a database and then end up putting all of your data in Redis especially data that changes a lot. Redis is not for storing all of your data.
If you have large data set, you should use offset and limit, getting only what is needed from the database into main memory (and maybe caching those in Redis) at any point in time is very efficient.
With 30,000 rows in a table, if offset/limit is the only viable or appropriate restriction, then that’s sometimes the way to go.
AI- Powered Jobs Interview Warmup For Job Seekers

⚽️Comparative Analysis: Top Calgary Amateur Soccer Clubs – Outdoor 2025 Season (Kids' Programs by Age Group)
More often, there’s a much better way of restricting 30,000 rows via some search criteria that significantly reduces the displayed volume of rows — ideally to a single page or a few pages (which are appropriate to cache in Redis.)
It’s unlikely (though it does happen) that users really want to casually browse 30,000 rows, page by page. More often, they want this one record, or these small number of records.
AI Jobs and Career
And before we wrap up today's AI news, I wanted to share an exciting opportunity for those of you looking to advance your careers in the AI space. You know how rapidly the landscape is evolving, and finding the right fit can be a challenge. That's why I'm excited about Mercor – they're a platform specifically designed to connect top-tier AI talent with leading companies. Whether you're a data scientist, machine learning engineer, or something else entirely, Mercor can help you find your next big role. If you're ready to take the next step in your AI career, check them out through my referral link: https://work.mercor.com/?referralCode=82d5f4e3-e1a3-4064-963f-c197bb2c8db1. It's a fantastic resource, and I encourage you to explore the opportunities they have available.
Invest in your future today by enrolling in this Azure Fundamentals - Pass the Azure Fundamentals Exam with Ease: Master the AZ-900 Certification with the Comprehensive Exam Preparation Guide!
- AWS Certified AI Practitioner (AIF-C01): Conquer the AWS Certified AI Practitioner exam with our AI and Machine Learning For Dummies test prep. Master fundamental AI concepts, AWS AI services, and ethical considerations.
- Azure AI Fundamentals: Ace the Azure AI Fundamentals exam with our comprehensive test prep. Learn the basics of AI, Azure AI services, and their applications.
- Google Cloud Professional Machine Learning Engineer: Nail the Google Professional Machine Learning Engineer exam with our expert-designed test prep. Deepen your understanding of ML algorithms, models, and deployment strategies.
- AWS Certified Machine Learning Specialty: Dominate the AWS Certified Machine Learning Specialty exam with our targeted test prep. Master advanced ML techniques, AWS ML services, and practical applications.
- AWS Certified Data Engineer Associate (DEA-C01): Set yourself up for promotion, get a better job or Increase your salary by Acing the AWS DEA-C01 Certification.
Question: This is a general question that applies to MySQL, Oracle DB or whatever else might be out there.
I know for MySQL there is LIMIT offset,size; and for Oracle there is ‘ROW_NUMBER’ or something like that.
But when such ‘paginated’ queries are called back to back, does the database engine actually do the entire ‘select’ all over again and then retrieve a different subset of results each time? Or does it do the overall fetching of results only once, keeps the results in memory or something, and then serves subsets of results from it for subsequent queries based on offset and size?
If it does the full fetch every time, then it seems quite inefficient.
If it does full fetch only once, it must be ‘storing’ the query somewhere somehow, so that the next time that query comes in, it knows that it has already fetched all the data and just needs to extract next page from it. In that case, how will the database engine handle multiple threads? Two threads executing the same query?
something will be quick or slow without taking measurements, and complicate the code in advance to download 12 pages at once and cache them because “it seems to me that it will be faster”.
Answer: First of all, do not make assumptions in advance whether something will be quick or slow without taking measurements, and complicate the code in advance to download 12 pages at once and cache them because “it seems to me that it will be faster”.
YAGNI principle – the programmer should not add functionality until deemed necessary.
Do it in the simplest way (ordinary pagination of one page), measure how it works on production, if it is slow, then try a different method, if the speed is satisfactory, leave it as it is.
From my own practice – an application that retrieves data from a table containing about 80,000 records, the main table is joined with 4-5 additional lookup tables, the whole query is paginated, about 25-30 records per page, about 2500-3000 pages in total. Database is Oracle 12c, there are indexes on a few columns, queries are generated by Hibernate. Measurements on production system at the server side show that an average time (median – 50% percentile) of retrieving one page is about 300 ms. 95% percentile is less than 800 ms – this means that 95% of requests for retrieving a single page is less that 800ms, when we add a transfer time from the server to the user and a rendering time of about 0.5-1 seconds, the total time is less than 2 seconds. That’s enough, users are happy.
And some theory – see this answer to know what is purpose of Pagination pattern
- MongoDB & HSBCby Debanjan Chakraborty (Database on Medium) on May 15, 2026 at 7:59 pm
Why Mongo DB?Continue reading on Medium »
- PostgreSQL Internals: Chapter 4 — Vacuum, Dead Tuples, and Why Your Table Keeps Growingby Akshit Bansal (Database on Medium) on May 15, 2026 at 6:58 pm
In the previous chapters, we saw two important things:Continue reading on Medium »
- A Complete Guide to Migrating Django from SQLite3 to PostgreSQLby Hidayat Mansuri (Database on Medium) on May 15, 2026 at 6:53 pm
When starting a Django project, SQLite3 is a fantastic choice. It requires zero configuration and lives as a simple file right inside your…Continue reading on Medium »
- CAP Teoremi: Dağıtık Sistemlerin Görünmez Sınırları ve Mimari Tercihlerby İbrahim Halil Çadırcı (Database on Medium) on May 15, 2026 at 6:22 pm
Merhabalar, bu yazımda sizlere mikroservislerle çalışırken sıkça karşılaştığımız CAP teoreminden bahsedeceğim.Continue reading on Medium »
- 5 SQL Mistakes Every Beginner Makes (And How to Avoid Them)by VishToSQL (Database on Medium) on May 15, 2026 at 5:57 pm
The SQL mistakes I wish I had avoided earlier.Continue reading on Medium »
- Database Migrations, what are they?by Patrick (Database on Medium) on May 15, 2026 at 4:41 pm
It’s often common to see these word thrown around amongst developers and technical recruiters, as a beginner you might get confused on…Continue reading on Medium »
- Six SQL patterns I use to catch transaction fraudby Contact (Database on Medium) on May 15, 2026 at 4:37 pm
The actual queries I run when I’m hunting fraud in transaction data. Velocity, impossible distances, suspicious amounts, merchant…Continue reading on Medium »
- Apartment Is Done. Here Is What I Replaced It With.by Raza Hussain (Database on Medium) on May 15, 2026 at 3:33 pm
Migrating Rails multi-tenancy from Apartment to PostgreSQL Row-Level Security before you are too big to do it cleanlyContinue reading on Level Up Coding »
- Discord’s Trillion-Message Architecture Is a Distributed Systems Masterclassby The Latency Gambler (Database on Medium) on May 15, 2026 at 3:21 pm
From a single MongoDB replica to 4 trillion messages here’s every engineering decision that actually mattered.Continue reading on Medium »
- AI agents know SQL. Oracle Database Skills teach them Oracleby Mark Nelson (Database on Medium) on May 15, 2026 at 1:27 pm
This is article 1 of 8 in my Oracle Database Skills series.Continue reading on Oracle Developers »
- Note: this is not advertise post or anything just looking for adviceby /u/EqualMatch7754 (Database) on May 15, 2026 at 12:41 pm
I’m a full-stack developer with a backend focus. I was searching for a playlist to deep dive into databases and improve my understanding of them. Someone recommended this playlist. Has anyone watched it before and can share their feedback? Also, if anyone has a better recommendation, please let me know. https://preview.redd.it/e7apkritqa1h1.png?width=287&format=png&auto=webp&s=987eb637b9b3d5042c7b43e7c9d52f553d78f40c submitted by /u/EqualMatch7754 [link] [comments]
- MIT-licensed Vector Search on Object Storageby /u/NoPercentage6144 (Database) on May 14, 2026 at 9:35 pm
submitted by /u/NoPercentage6144 [link] [comments]
- I don't want to go deep in DB, just get some basic design principles, 3h course maxby /u/Numerous_Economy_482 (Database) on May 14, 2026 at 9:25 pm
Please don't judge me, I'm not applying for a DB job, I just want to get basic design principles. If possible very example driven, why to use one to many in this case, or not to use. I know that every field needs years to master, even what I mentioned, I don't want to master it 🙂 So any course suggestions? [Edit] SQL is not a huge problem, I want to know things like, should everything related to a user be a huge table? Should I put flags about his password in the same table as his address. Or separate tables based in some principles? submitted by /u/Numerous_Economy_482 [link] [comments]
- Applying paymentsby /u/spaceradiowave (Database) on May 14, 2026 at 7:06 pm
Im trying to wrap my head on how to program to apply payments against invoices. I have a data table for invoices and one for payments so far User selects new payment and is taken to the payment screen User selects customer A list is populated with any invoices with a balance above zero for that customers id User enters amount of payment, and also how much of that goes to each invoice When user hits DONE, the program would check if the overall amount matches the sums of all amount entered to each invoice But there is a payment details data table im missing? And how does it tie in to hold the “where payment was applied”? submitted by /u/spaceradiowave [link] [comments]
- Which database software do I need?by /u/Richardcavell (Database) on May 14, 2026 at 2:31 pm
I have a Windows 11 machine. I want to create a database which contains records sorted by date. For each date, I will have a text file, and a video that could be 1 or 2 gigabytes. The resulting file will be in the order of a terabyte. I am the only person who will ever use this database. Which free or cheap software do I need to create and use this database? submitted by /u/Richardcavell [link] [comments]
- Snowflake Micro partition, Snowflake table types , Snowflake View types and time travel vs Fail safeby /u/KeyCandy4665 (Database) on May 14, 2026 at 11:18 am
submitted by /u/KeyCandy4665 [link] [comments]
- easy way for beginner to create custom database solutions in FM with AI ?by /u/greenreddits (Database) on May 14, 2026 at 8:08 am
submitted by /u/greenreddits [link] [comments]
- ClickHouse async inserts explained: buffering, flush behavior, and when to use itby /u/Marksfik (Database) on May 14, 2026 at 6:59 am
Async insert mode in ClickHouse is a great tool for high-frequency writes, but it has some gotchas around when data is actually committed and how deduplication works. We put together a technical walkthrough. submitted by /u/Marksfik [link] [comments]
- Where do I refresh my skills after some yearsby /u/Big-Walrus6334 (Database) on May 13, 2026 at 9:47 pm
I'm working as a Software Engineer (Frontend) and didn't work with Databases that deep for so many years. Last time was 6-7 years ago in University and I was working with MySQL Now I'm gonna work on my side projects and I want to know about everything on the Database side and also use them at my work. I totally forgot so many topics. Right now the tool which I'm gonna use is Supabase and PostgreSQL I found this course on FrontendMaster (Which I have subscription) but it's for 7 hours. Does anyone recommend any other courses or better ways so I can go through all the topics and not miss anything? (I generally like watching courses) submitted by /u/Big-Walrus6334 [link] [comments]
- How (and why) rqlite takes control of the SQLite Write-Ahead Logby /u/hudddb3 (Database) on May 13, 2026 at 5:18 pm
submitted by /u/hudddb3 [link] [comments]
- Building a Databaseby /u/biigeiight (Database) on May 13, 2026 at 2:56 pm
I currently use an excel spreadsheet to keep track of horses and their trip notes. I am looking to build a database that’s a little cleaner to be able to filter easier and store this data, compared to an excel sheet. Any thoughts/direction on how to accomplish this? submitted by /u/biigeiight [link] [comments]
- Notes on the MySQL 9.7 LTS releaseby /u/db-master (Database) on May 13, 2026 at 11:05 am
submitted by /u/db-master [link] [comments]
- Trying to create a database for contact information/records/user profiles for organizationby /u/gr8twisting (Database) on May 12, 2026 at 4:26 pm
Hello! I'm really hoping someone may be able to help me. I'm trying to find a free way to create a digitized database for a small group of user records for my new position as I had something similar at my last job. However, at my last job we just created a database with Microsoft access and I had no part in its creation, just in basic data management. I am unfortunately not look for anything robust, just need a small server to host this. I am unfortunately pretty technologically weak in terms of creating or coding something, but I can maintain records. I saw someone saying that like postgres is a good free database but I am finding myself more and more lost trying to work with it. Is there a way to do what I'm trying to do, is postgres good, or should I just find an alternative to what i'm trying to do and database management isn't what I'd need? submitted by /u/gr8twisting [link] [comments]
- Trying to implement product shipments and invoicing in DBby /u/twaw09 (Database) on May 12, 2026 at 2:42 pm
Hello, first of all sorry if this isn't the right sub. But I'm reading and trying to apply Len Silverton's Data Model Resource Book, but there is one thing I can't grasp yet. If I invoice for a shipment and some items were damaged, I could make another invoice to credit for those items, but if I want to send a replacement in another shipment, how can I attach that to that invoice or previous shipment? I have table shipment_items_billing, which is made of (shipment_id, shipment_item_seq_id, invoice_id, invoice_item_seq_id) (composed pk). So if I query a group by shipments, sum(qty shipped - qty_billed), I get how much I'm owing the client. For example: invoice1: qty=10 shipment1: qty=8 so I'm owing the client 2 units. But if I make another shipment linked to invoice1 with qty=2, I get that I still owe 2 items for shipment1 and 8 are not invoiced for shipment2. I could make a different query to see which invoices have pending shipping quantities, but then if I query the first one i still get the wrong values. What's wrong with my understanding? Edit: here is an example I wrote: https://pastebin.com/dc3ymFxZ submitted by /u/twaw09 [link] [comments]
- The Predictive Database: when a prediction is a query, not a projectby /u/arauhala (Database) on May 12, 2026 at 11:00 am
submitted by /u/arauhala [link] [comments]
- Open-source Rust DB proxy: looking for architecture feedback (MySQL + PostgreSQL)by /u/Physical_Math_9135 (Database) on May 11, 2026 at 1:58 pm
Hey folks, I’m working on an open-source Rust project that sits between app and DB, and I’m looking for technical feedback on design tradeoffs. Current scope: MySQL + PostgreSQL protocol support read/write routing connection pooling query fingerprinting + slow-query analytics optional dashboard/API Questions I’d really value input on: Where would you draw the line between proxy responsibilities vs app responsibilities? What failure modes should be prioritized first (pool starvation, failover flapping, tx edge cases)? For production usage, what would be your “must-have before adoption” checklist? submitted by /u/Physical_Math_9135 [link] [comments]
- Library catalogue automation and linked with file explorerby /u/mincedduck (Database) on May 11, 2026 at 3:05 am
(if this is not the right place to post please remove / redirect me) Hi all, I work at a firm and part of my role is managing our physical and digital library which has numerous resources including books, reports, references, etc. These resources are organised by dewy decimal system, and we use Notion as a library catalogue to search for the location of these items. The physical library has these resources on shelves, and for the digital library we keep the resources in file explorerer. If a resource is moved, deleted or added, it must be updated manually in notion, and so I was wondering if there was a way to automate this. I've been thinking of using a combination of SharePoint and Microsoft lists, but I'm wondering if there's a better way to do this? Thanks! submitted by /u/mincedduck [link] [comments]
- Efficient Way to Provide Direct Access to Financial Data?by /u/Ok_Egg_6647 (Database) on May 10, 2026 at 3:14 pm
Hi Everyone, I wanted to ask if there’s any way through which someone can directly fetch internal data from a local or cloud database. I built a simple tool that allows users to download financial data in CSV format. The issue with the current system is that if a user needs data for hundreds of instruments, they have to enter each instrument name one by one and download separate CSV files for each. I feel this becomes a very tedious process. So, I was thinking it might be better to provide users with direct access to the data and let them work with it however they want. Also, the users here are not random people they are a few of my friends who need access to this data. Tech Stack POSTGRES PgAdmin application submitted by /u/Ok_Egg_6647 [link] [comments]
- Spring Boot app keeps using old DB_USERNAME despite setx and hardcoding in application.properties — IntelliJ ignoring credentials?by /u/Aggressive_Science_5 (Database) on May 10, 2026 at 10:53 am
Hey everyone, I'm losing my mind with this issue. I have two Spring Boot projects — one using MySQL and one using PostgreSQL. I've been trying to set database credentials using setx in Windows CMD, but IntelliJ keeps picking up old values even after restarting. The problem: Even after running setx DB_USERNAME postgres, the app still tries to connect as root Even after hardcoding the credentials directly in application.properties, I still get Access denied for user 'root'@'localhost' Invalidating IntelliJ cache didn't help Run Configurations don't have any hardcoded env variables What I've tried: setx DB_USERNAME and setx DB_PASSWORD multiple times Hardcoding credentials directly in application.properties Invalidating IntelliJ caches and restarting Creating a new MySQL user with a simpler password (no special characters) Adding spring.batch.jdbc.initialize-schema=never Environment: IntelliJ IDEA Spring Boot 3.4.5 MySQL 8.0 + PostgreSQL 18 Windows 11 JDK 17 Has anyone faced this? How do I force IntelliJ/Spring to actually use the credentials I set? submitted by /u/Aggressive_Science_5 [link] [comments]
- Question. How does BNCF sorting operate?by /u/Elite_Asriel (Database) on May 6, 2026 at 7:16 pm
I got a test involving that in 2 days, and until now i just end up blindly guessing based on patterns since i cannot understand how to analyze it, even with everything i hit up on the internet. submitted by /u/Elite_Asriel [link] [comments]
- Treating database replatforming as a workflow instead of a code-generation problemby /u/mr_pants99 (Database) on May 6, 2026 at 6:18 pm
Been working on this for a while and figured our approach might be interesting to people who've tried (and failed) to point an LLM at a legacy codebase and ask it to "migrate to MongoDB." Spoiler: that doesn't work. Not on anything bigger than a toy project. The reason isn't that the models are bad at writing code - they're great at it. The reason is that they don't understand the code, and more importantly, they don't have the fluid abstraction thinking a human architect uses to decide what to migrate to in the first place. Schema redesign, query reshaping, DAL boundaries, transactional semantics - those are architectural decisions, not synthesis problems. Throwing more context window at it doesn't fix this. What we ended up doing instead is reframing replatforming as a workflow rather than a single agent task: - Discovery (map app surface, data flows, query patterns) - DAL isolation + test coverage to lock current behavior - Migration assessment (what's actually movable, what's a landmine) - Schema design, but empirically validated against real query patterns instead of guessed - New parallel DAL implementation alongside the legacy one - Live Data migration with CDC (we use our own tool, Dsync) for low-downtime cutover Each stage is idempotent, produces reviewable artifacts, and critically, runs at a specific level of abstraction. A human architect reviews architectural decisions and test results - not diffs. That's the part that unlocks it for actual codebases. What we tested it on: MS SQL -> Mongo/Cosmos Postgres -> Mongo Dynamo → Mongo/Cosmos What it's not: a magic button. It compresses the engineering bottleneck dramatically, but you still own UAT, environment promotion, stakeholder sign-off, and the cutover itself. Anyone selling you "production replatform in a weekend" is lying. Would love to hear from folks who faced the problem before (or now!) and what approaches you used or contemplated. submitted by /u/mr_pants99 [link] [comments]
- Advice on designing an audit table, please.by /u/No-Security-7518 (Database) on May 6, 2026 at 7:03 am
I have this table (Sqlite): CREATE TABLE "userActivity" ( "actionId"INTEGER, "action"TEXT, "userId"INTEGER, "timestamp"TEXT, PRIMARY KEY("actionId" AUTOINCREMENT), FOREIGN KEY("userId") REFERENCES "users"("userId") ) that is read into this DTO: UserActivity <F extends Enum<F> & Feature<F>> { private F action; private Account<F> user; private LocalDateTime timestamp; public UserActivity(F action, Account<F> user, LocalDateTime timestamp) { this .action = action; this .user = user; this .timestamp = timestamp; } .... However, I have problems when a user gets deleted, since a user is referenced using id. I have a soft delete strategy whereby there's a copy users_archive table, that keeps all rows deleted from the users table. How do I resolve this? 1. Keep only a snapshot of the user (userName, accountType, accountClass) as strings (not a fan of having "non-descriptive" data structures/DTOs. Create a user_activity_archive that references users_archive; and have a row that gets deleted from users cascade into userActivity. A third strategy other than this? Thanks in advance. submitted by /u/No-Security-7518 [link] [comments]
- MySQL Family Pictureby /u/dveeden (Database) on May 5, 2026 at 6:26 am
https://dveeden.github.io/mysql-history-graph/ submitted by /u/dveeden [link] [comments]
- Database building adviceby /u/kittenco (Database) on May 4, 2026 at 10:59 pm
I'm hoping to build something that would help me at work. We have multiple carriers that have rates based on similar criteria, and right now I need to check each carrier individually. I'd like to be able to fill in boxes of a query with age, sex, and smoker status and get the results of each carriers' plans. Ideally this would show all 7 carriers and their 5 plans each. I'd like to create either a spreadsheet or LibreOffice Base tool to help me do this, but I'm not sure if it's better to use one over the other. If I use Excel, do I have to do vlookup in a grid for each option? I tried to do a database on my own using basic tutorials, but I think I need to make multiple sheets instead of one like I tried? submitted by /u/kittenco [link] [comments]
- Protecting Postgresby /u/mehantr (Database) on May 4, 2026 at 6:07 pm
The Database team at Figma built a new service that implements connection & load management primitives to protect our Postgres fleet. Read more about it here: https://www.figma.com/blog/pgkeeper-building-the-bouncer-we-needed-for-postgres/ submitted by /u/mehantr [link] [comments]





































96DRHDRA9J7GTN6