diff --git a/modules/ROOT/pages/database-administration/standard-databases/manage-databases.adoc b/modules/ROOT/pages/database-administration/standard-databases/manage-databases.adoc index 93609c7af..256365b29 100644 --- a/modules/ROOT/pages/database-administration/standard-databases/manage-databases.adoc +++ b/modules/ROOT/pages/database-administration/standard-databases/manage-databases.adoc @@ -610,10 +610,8 @@ There are no available `OPTIONS` values for composite databases. ==== Alter the options set for a database -// skip test until we make the change_data_capture feature flag on by default. - .Query -[source, cypher, role="test-skip"] +[source, cypher] ---- ALTER DATABASE `movies` SET OPTION txLogEnrichment 'FULL' @@ -621,10 +619,8 @@ SET OPTION txLogEnrichment 'FULL' The database set options can be seen in the `options` output column of the command `SHOW DATABASES`. -// skip test until we make the change_data_capture feature flag on by default. - .Query -[source, cypher, role="test-skip"] +[source, cypher] ---- SHOW DATABASES yield name, options ---- @@ -643,10 +639,8 @@ SHOW DATABASES yield name, options ==== Remove the options set for a database -// skip test until we make the change_data_capture feature flag on by default. - .Query -[source, cypher, role="test-skip"] +[source, cypher] ---- ALTER DATABASE `movies` REMOVE OPTION txLogEnrichment @@ -654,9 +648,8 @@ REMOVE OPTION txLogEnrichment The `REMOVE OPTION` clause removes the specified option from the database using the `ALTER DATABASE` command. -// skip test until we make the change_data_capture feature flag on by default. .Query -[source, cypher, role="test-skip"] +[source, cypher] ---- SHOW DATABASES YIELD name, options ----