Skip to content

Commit 0665926

Browse files
Merge pull request #126956 from changeworld/patch-10
Fix typo: pre-pending -> prepending
2 parents 4fc247d + 0810677 commit 0665926

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If user-defined schemas haven't been used previously, then you have a clean slat
3636
If schemas have already been used, then you have a few options:
3737

3838
- Remove the legacy schema names and start fresh
39-
- Keep the legacy schema names by pre-pending the legacy schema name to the table name
39+
- Keep the legacy schema names by prepending the legacy schema name to the table name
4040
- Retain the legacy schema names by implementing views over the table in an extra schema, which re-creates the old schema structure.
4141

4242
> [!NOTE]
@@ -64,7 +64,7 @@ CREATE TABLE [edw].[customer] -- create analytics tables in the edw schema
6464
);
6565
```
6666

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

6969
```sql
7070
CREATE SCHEMA [stg]; -- stg defines the staging boundary

0 commit comments

Comments
 (0)