Skip to content

Commit 513e478

Browse files
Merge pull request #35888 from rwestMSFT/rw-1120-fix-10227
Fix SQL command for altering external model
2 parents e091ff7 + 9846b8c commit 513e478

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/t-sql/statements/alter-external-model-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ Only single external model object can be modified at a time. Concurrent requests
8686

8787
### Alter EXTERNAL MODEL and change the MODEL parameter
8888

89-
This example alters the `EXTERNAL MODEL` named `dbo.myAImodel`, and changes the `MODEL` parameter.
89+
This example alters the `EXTERNAL MODEL` named `myAImodel`, and changes the `MODEL` parameter.
9090

9191
```sql
9292
-- Alter an external model
93-
ALTER EXTERNAL MODEL dbo.myAImodel
93+
ALTER EXTERNAL MODEL myAImodel
9494
SET
9595
(
9696
MODEL = 'text-embedding-3-large'

docs/t-sql/statements/drop-external-model-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ Dropping an external model doesn't drop any credentials that the model was using
5151

5252
### Drop EXTERNAL MODEL
5353

54-
This example drops the model named `dbo.myAImodel`.
54+
This example drops the model named `myAImodel`.
5555

5656
```sql
57-
DROP EXTERNAL MODEL dbo.myAImodel;
57+
DROP EXTERNAL MODEL myAImodel;
5858
```
5959

6060
## Related content

0 commit comments

Comments
 (0)