The Stroz

Indexing Data in MySQL Document Store
Indexing Data in MySQL Document Store

MySQL Document Store is a JSON document storage solution built on top of MySQL. One feature of MySQL Document Store that can help speed up searches is the ability to create indexes of data contained within our JSON documents. In this post, we will demonstrate creating an index and look at the changes made to our collection after we create the index.

Oct 07, 2022
6 minutes
Sep 22, 2022
9 minutes
Connecting MySQL Shell Over SSH
Connecting MySQL Shell Over SSH

As I mentioned in my last post, I am a big fan of MySQL Shell. Until recently, I have only used MySQL Shell to connect to a local instance of MySQL running on my development machine.

Sep 12, 2022
3 minutes
MySQL Shell Alias For PowerShell
MySQL Shell Alias For PowerShell

Yesterday, my colleague, Fred (AKA LeFred), shared a blog post that discusses setting up aliases that allow us to run MySQL Shell when we enter mysql at a command prompt.

Sep 09, 2022
2 minutes
MySQL Window Functions Part 2
MySQL Window Functions Part 2

First introduced as part of the SQ:2003 Standard and available in MySQL 8.0, window functions in MySQL are compelling, but the syntax can also be a little intimidating when you first start using them. This post is the second in a series where we will discuss window functions – including breaking down the syntax and using examples of different window functions. All the code examples in this post use the database table and data we created in Part 1.

Sep 08, 2022
8 minutes
Heading to Raleigh in November
Heading to Raleigh in November

I am excited to announce that I am speaking at All Things Open this year.

Sep 06, 2022
1 minute
Speaking in NYC This Month
Speaking in NYC This Month

I am speaking at the International JavaScript Conference at the end of this month in Brooklyn, NY.

Sep 02, 2022
1 minute
MySQL Window Functions Part 1
MySQL Window Functions Part 1

First introduced as part of the SQ:2003 Standard and available in MySQL 8.0, window functions in MySQL are compelling, but the syntax can also be a little intimidating when you first start using them. This post is the first in a series where we will discuss window functions – including breaking down the syntax and using examples of different window functions.

Sep 01, 2022
11 minutes
Where Have I Been?
Where Have I Been?

If it seems like this space was neglected for a while, well…that is because it was.

Aug 29, 2022
2 minutes
Better Tests Part 2 - Test Every Condition
Better Tests Part 2 - Test Every Condition

This is the second part of a series of posts that will help us write better tests…and this one should seem kind of obvious - making sure we test every logical condition in our code.

Apr 29, 2022
8 minutes