Skip to content

Commit 256f2df

Browse files
Merge pull request #126955 from changeworld/patch-9
Fix typo: pre-pending -> prepending
2 parents 0665926 + db38926 commit 256f2df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-user-defined-schemas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If user-defined schemas have not been used previously, then you have a clean sla
3939
If schemas have already been used, then you have a few options:
4040

4141
- Remove the legacy schema names and start fresh.
42-
- Retain the legacy schema names by pre-pending the legacy schema name to the table name.
42+
- Retain the legacy schema names by prepending the legacy schema name to the table name.
4343
- Retain the legacy schema names by implementing views over the table in an extra schema to re-create the old schema structure.
4444

4545
> [!NOTE]
@@ -66,7 +66,7 @@ CREATE TABLE [edw].[customer] -- create data warehouse tables in the edw schema
6666
);
6767
```
6868

69-
Keep legacy schema names by pre-pending them to the table name. Use schemas for the workload boundary:
69+
Keep legacy schema names by prepending them to the table name. Use schemas for the workload boundary:
7070

7171
```sql
7272
CREATE SCHEMA [stg]; -- stg defines the staging boundary

0 commit comments

Comments
 (0)