a curated list of database news from authoritative sources

October 21, 2022

supabase-flutter v1 Released

We've released supabase-flutter v1. More intuitive way of accessing Supabase from your Flutter application.

October 20, 2022

supabase-js v2 Released

We've released supabase-js v2. Updated examples, quickstarts, and an improved experience.

October 19, 2022

Laravel’s safety mechanisms

A comprehensive overview of Laravel’s many safety features that can help you prevent painful mistakes.

October 17, 2022

October 15, 2022

Is MySQL in the Cloud the End of the DBA?

No, I don’t think so. But it is does change our profession and have important implications for software engineers using (not managing) MySQL.

October 14, 2022

October 12, 2022

You Can Specify Two Indexes In Table Hint?

Yes, It turns out that you can specify two indexes in a table hint: SELECT Id, Reputation FROM dbo.Users WITH (INDEX (IX_Reputation, PK_Users_Id)) WHERE Reputation > 1000 And SQL Server obeys. It uses both indexes even though the nonclustered index IX_Reputation is covering: But Why? I think this is a solution looking for a problem. […]

The post You Can Specify Two Indexes In Table Hint? first appeared on Michael J. Swart.