You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/concepts-extensions.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,11 +111,11 @@ To update an installed extension to the latest available version supported by Az
111
111
ALTER EXTENSION <extension-name>UPDATE;
112
112
```
113
113
114
-
This command simplifies the management of database extensions by automatically upgrading to the latest version approved by Azure, enhancing both compatibility and security.
114
+
This command simplifies the management of database extensions by allowing users to manually upgrade to the latest version approved by Azure, enhancing both compatibility and security.
115
115
116
116
### Limitations
117
117
While updating extensions is straightforward, there are certain limitations:
118
-
-**Specific Version Selection**: The command does not support updating to intermediate versions of an extension. It will always update to the latest available version.
118
+
-**Specific Version Selection**: The command does not support updating to intermediate versions of an extension. It will always update to the [latest available version](#extension-versions).
119
119
-**Downgrading**: Azure does not currently support downgrading an extension to a previous version through a similar command. If a downgrade is necessary, it might require manual intervention or support assistance.
120
120
121
121
#### Viewing Installed Extensions
@@ -129,9 +129,10 @@ SELECT * FROM pg_extension;
129
129
To check which versions of an extension are available for your current database installation, execute:
130
130
131
131
```sql
132
-
SELECT*FROMpg_available_extension_versions;
132
+
SELECT*FROMpg_available_extensions WHERE name ='azure_ai';
133
133
```
134
-
These commands provide necessary insights into the extension configurations of your database, helping maintain your systems efficiently and securely. By enabling easy updates to the latest extension versions, Azure Database for PostgreSQL - Flexible Server continues to support the robust, secure, and efficient management of your database applications.
134
+
135
+
These commands provide necessary insights into the extension configurations of your database, helping maintain your systems efficiently and securely. By enabling easy updates to the latest extension versions, Azure Database for PostgreSQL continues to support the robust, secure, and efficient management of your database applications.
0 commit comments