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
If you have an existing RPM installation of MongoDB Foreign Data Wrapper, you can use yum or dnf to upgrade your repository configuration file and update to a more recent product version. To update the `edb.repo` file, assume superuser privileges and enter:
10
10
@@ -36,7 +36,7 @@ yum or dnf will update the `edb.repo` file to enable access to the current EDB r
36
36
37
37
where `xx` is the server version number.
38
38
39
-
**Updating MongoDB Foreign Data Wrapper on a Debian or Ubuntu Host**
39
+
## Updating MongoDB Foreign Data Wrapper on a Debian or Ubuntu Host
40
40
41
41
To update MongoDB Foreign Data Wrapper on a Debian or Ubuntu Host, use the following command:
Copy file name to clipboardExpand all lines: product_docs/docs/mongo_data_adapter/5.2.9/06_features_of_mongo_fdw.mdx
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -8,38 +8,38 @@ The key features of the MongoDB Foreign Data Wrapper are listed below:
8
8
9
9
## Writable FDW
10
10
11
-
The MongoDB Foreign Data Wrapper allows you to modify data on a MongoDB server. Users can `INSERT`, `UPDATE` and `DELETE` data in the remote MongoDB collections by inserting, updating and deleting data locally in foreign tables. See also:
11
+
The MongoDB Foreign Data Wrapper allows you to modify data on a MongoDB server. Users can `INSERT`, `UPDATE` and `DELETE` data in the remote MongoDB collections by inserting, updating and deleting data locally in foreign tables.
12
12
13
-
[Example: Using the MongoDB Foreign Data Wrapper](08_example_using_the_mongo_data_adapter/#example_using_the_mongo_data_adapter)
13
+
See also:
14
14
15
-
[Data Type Mappings](07_configuring_the_mongo_data_adapter/#data-type-mappings)
15
+
-[Example: Using the MongoDB Foreign Data Wrapper](08_example_using_the_mongo_data_adapter/#example_using_the_mongo_data_adapter)
16
16
17
-
## Where Clause Push-down
17
+
-[Data Type Mappings](07_configuring_the_mongo_data_adapter/#data-type-mappings)
18
18
19
-
MongoDB Foreign Data Wrapper allows the push-down of `WHERE` clause only when clauses include comparison expressions that have a column and a constant as arguments. WHERE clause push-down is not supported where constant is an array.
19
+
## WHERE Clause Push-down
20
+
21
+
MongoDB Foreign Data Wrapper allows the push-down of the `WHERE` clause only when clauses include the comparison expressions that have a column and a constant as arguments. `WHERE` clause push-down is not supported where the constant is an array.
20
22
21
23
## Connection Pooling
22
24
23
-
Mongo_FDW establishes a connection to a foreign server during the first query that uses a foreign table associated with the foreign server. This connection is kept and reused for subsequent queries in the same session.
25
+
The MongoDB Foreign Data Wrapper establishes a connection to a foreign server during the first query that uses a foreign table associated with the foreign server. This connection is kept and reused for subsequent queries in the same session.
24
26
25
27
## Automated Cleanup
26
28
27
29
The MongoDB Foreign Data Wrapper allows the cleanup of foreign tables in a single operation using the `DROP EXTENSION` command. This feature is especially useful when a foreign table has been created for a temporary purpose. The syntax of a `DROP EXTENSION` command is:
28
30
29
-
>`DROP EXTENSION mongo_fdw CASCADE;`
31
+
`DROP EXTENSION mongo_fdw CASCADE;`
30
32
31
33
For more information, see [DROP EXTENSION](https://www.postgresql.org/docs/current/sql-dropextension.html).
32
34
33
35
## Full Document Retrieval
34
36
35
-
This feature allows to retrieve documents along with all their fields from collection without any knowledge of the fields in BSON document available in MongoDB's collection. Those retrieved documents are in the JSON format.
37
+
This feature allows you to retrieve documents along with all their fields from collection without any knowledge of the fields in the BSON document available in MongoDB's collection. Those retrieved documents are in JSON format.
36
38
37
39
You can retrieve all available fields in a collection residing in MongoDB Foreign Data Wrapper as explained in the following example:
0 commit comments