Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mgramin committed Oct 15, 2023
1 parent a5b1389 commit 1325eb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

To start our investigation, we should review a crime scene report. Specifically, we need to create a SELECT query from the `crime_scene_report` table to retrieve the necessary information. Currently, there are 1228 records in this table. Additionally, by using TDK, we can generate additional records to enhance the complexity and engagement of our investigation.

So, firstly, let's create a copy of a SQL Murder Mystery database using the [KEEP](https://docs.synthesized.io/tdk/latest/user_guide/tutorial/masking) mode of TDK:
So, first, let's create a copy of a SQL Murder Mystery database using the [KEEP(https://docs.synthesized.io/tdk/latest/user_guide/tutorial/masking)] mode of TDK. Make sure that we have 1228 records in the crime_scene_report table in the new database:

```shell
export CONFIG_FILE=config_keep.tdk.yaml
Expand All @@ -19,7 +19,7 @@ usql -q sqlite3://output/output.db -f control_query.sql
1228
```

Then, we can multiply the crime_scene_report table by 10x using the [GENERATION](https://docs.synthesized.io/tdk/latest/user_guide/tutorial/generation) mode of TDK:
Next, we can multiply the crime_scene_report table by 10x using the [GENERATION](https://docs.synthesized.io/tdk/latest/user_guide/tutorial/generation) mode of TDK. This will result in having 12280 records in the crime_scene_report table and make our investigation more intriguing:

```shell
export CONFIG_FILE=config_generation.tdk.yaml
Expand Down

0 comments on commit 1325eb1

Please sign in to comment.