Skip to content

Commit e89443a

Browse files
committed
shau1
1 parent 1ea99b4 commit e89443a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/dms/tutorial-postgresql-azure-postgresql-online.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To complete all the database objects like table schemas, indexes and stored proc
114114
115115
```
116116
SELECT Queries.tablename
117-
,concat('alter table ', Queries.tableland, ' ', STRING_AGG(concat('DROP CONSTRAINT ', Queries.foreignkey), ',')) as DropQuery
117+
,concat('alter table ', Queries.tablename, ' ', STRING_AGG(concat('DROP CONSTRAINT ', Queries.foreignkey), ',')) as DropQuery
118118
,concat('alter table ', Queries.tablename, ' ',
119119
STRING_AGG(concat('ADD CONSTRAINT ', Queries.foreignkey, ' FOREIGN KEY (', column_name, ')', 'REFERENCES ', foreign_table_name, '(', foreign_column_name, ')' ), ',')) as AddQuery
120120
FROM

articles/dms/tutorial-rds-postgresql-server-azure-db-for-postgresql-online.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ To complete this tutorial, you need to:
102102
103103
```
104104
SELECT Queries.tablename
105-
,concat('alter table ', Queries.tableland, ' ', STRING_AGG(concat('DROP CONSTRAINT ', Queries.foreignkey), ',')) as DropQuery
105+
,concat('alter table ', Queries.tablename, ' ', STRING_AGG(concat('DROP CONSTRAINT ', Queries.foreignkey), ',')) as DropQuery
106106
,concat('alter table ', Queries.tablename, ' ',
107107
STRING_AGG(concat('ADD CONSTRAINT ', Queries.foreignkey, ' FOREIGN KEY (', column_name, ')', 'REFERENCES ', foreign_table_name, '(', foreign_column_name, ')' ), ',')) as AddQuery
108108
FROM

0 commit comments

Comments
 (0)