{"id":30000,"date":"2023-12-29T10:33:51","date_gmt":"2023-12-29T09:33:51","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=30000"},"modified":"2023-12-29T10:33:52","modified_gmt":"2023-12-29T09:33:52","slug":"dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/","title":{"rendered":"dbvisit StandbyMP with Oracle SE2 &#8211; ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed."},"content":{"rendered":"\n<p>I recently deployed a new installation at one customer with 2 linux servers and 2 Oracle SE2 databases with dbvisit StandbyMP v11 disaster recovery solution. I prepared the standby database using RMAN duplication method, and then just wanted to create the dbvisit DDC configuration using CLI command. I had to troubleshoot one error, and wanted to share quickly the solution hoping it will help you save some time if you are facing the same problem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-problem-description\">Problem description<\/h2>\n\n\n\n<p>I used dbvctl command to create the DDC configuration. Using the GUI generated exactly the same problem.<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,13,22,24,35,37]\">\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/ [MYDB] .\/dbvctl -o setup\n\n\n=========================================================\n\n     Dbvisit Standby Database Technology (11.4.1)\n           http:\/\/www.dbvisit.com\n\n=========================================================\n\n=&gt;dbvctl only needs to be run on the primary server.\n\nIs this the primary server?  [Yes]:\nThe following Dbvisit Database configuration (DDC) file(s) found on this\nserver:\n\n     DDC\n     ===\n1)   Create New DDC\n2)   Cancel\n\nPlease enter choice [] : 1\n\nIs this correct?  [Yes]:\n\n=========================================================\nDbvisit Standby setup begins.\n=========================================================\nThe following Oracle instance(s) have been found on this server:\n\n     SID            ORACLE_HOME\n     ===            ===========\n1)   MYDB         \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\/\n2)   Enter own ORACLE_SID and ORACLE_HOME\nPlease enter choice [] : 1\n\nIs this correct?  [Yes]:\n=&gt;ORACLE_SID will be: MYDB\n=&gt;ORACLE_HOME will be: \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\/\n\n&lt;&lt;&lt;&gt;&gt;&gt;\n\nPID:434403\nTRACEFILE:dbvisit_install.log\nSERVER:srv01\nERROR_CODE:808\nDatabase in unknown mode (94). Setup cannot proceed.\n&gt;&gt;&gt;&gt; Dbvisit Standby terminated &lt;&lt;&lt;&lt;\n<\/pre>\n<\/br>\n\n\n\n<p>I faced following error:<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,2]\">\nERROR_CODE:808\nDatabase in unknown mode (94). Setup cannot proceed.\n&gt;&gt;&gt;&gt; Dbvisit Standby terminated &lt;&lt;&lt;&lt;\n<\/pre>\n<\/br>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-troubleshooting\">Troubleshooting<\/h2>\n\n\n\n<p>I troubleshooted dbvisit_install.log log and could find following errors:<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,10,11]\">\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/log\/ [MYDB] cat dbvisit_install.log\n...\n...\n...\n4472 20231214 10:56:04 main::cmn_get_rooh_oraenv: ORACLE_BASE_HOME  =\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\/\n4472 20231214 10:56:04 main::cmn_get_rooh_oraenv: ORACLE_BASE_CONFIG=\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\/\n...\n...\n...\n59 20231214 10:18:36 main::ora_db_connect: connection failed:ORA-12547: TNS:lost contact (DBD ERROR: OCIServerAttach)\n59 20231214 10:18:36 main::ora_exec_sql: end: error_code=12547 error=ORA-12547: TNS:lost contact (DBD ERROR: OCIServerAttach)\n...\n...\n...\n<\/pre>\n<\/br>\n\n\n\n<p>It seems dbvisit could not access the database through the Oracle Net Services.<\/p>\n\n\n\n<p>But I checked the listener configuration, and the database services were correctly registered in the listener. I could even successfully test a connection to the database through the listener using sqlplus.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-solution\">Solution<\/h2>\n\n\n\n<p>Doing more troubleshooting, I could realise that the problem was coming from the oratab. The Oracle SID was configured with appropriate ORACLE_HOME but having a &#8220;\/&#8221; at the end.<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,24]\">\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/log\/ [MYDB] cat \/etc\/oratab\n#\n\n\n\n# This file is used by ORACLE utilities.  It is created by root.sh\n# and updated by either Database Configuration Assistant while creating\n# a database or ASM Configuration Assistant while creating ASM instance.\n\n# A colon, ':', is used as the field terminator.  A new line terminates\n# the entry.  Lines beginning with a pound sign, '#', are comments.\n#\n# Entries are of the form:\n#   $ORACLE_SID:$ORACLE_HOME::\n#\n# The first and second fields are the system identifier and home\n# directory of the database respectively.  The third field indicates\n# to the dbstart utility that the database should , \"Y\", or should not,\n# \"N\", be brought up at system boot time.\n#\n# Multiple entries with the same $ORACLE_SID are not allowed.\n#\n#\nMYDB:\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\/:Y\n<\/pre>\n<\/br>\n\n\n\n<p>I modified the oratab accordingly on both primary and standby side:<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,3,26]\">\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/log\/ [MYDB] vi \/etc\/oratab\n\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/log\/ [MYDB] cat \/etc\/oratab\n#\n\n\n\n# This file is used by ORACLE utilities.  It is created by root.sh\n# and updated by either Database Configuration Assistant while creating\n# a database or ASM Configuration Assistant while creating ASM instance.\n\n# A colon, ':', is used as the field terminator.  A new line terminates\n# the entry.  Lines beginning with a pound sign, '#', are comments.\n#\n# Entries are of the form:\n#   $ORACLE_SID:$ORACLE_HOME::\n#\n# The first and second fields are the system identifier and home\n# directory of the database respectively.  The third field indicates\n# to the dbstart utility that the database should , \"Y\", or should not,\n# \"N\", be brought up at system boot time.\n#\n# Multiple entries with the same $ORACLE_SID are not allowed.\n#\n#\nMYDB:\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0:Y\n<\/pre>\n<\/br>\n\n\n\n<p>And could then successfully create the DDC configuration:<\/p>\n\n\n\n<pre class=\"brush: sql; gutter: true; first-line: 1; highlight: [1,3,15,24,26,37,39,46,49,63,66,72,75,94,97,103,106,111,114,119,122,127,130,142,145,150,153,160,162,169,172,177,180,210]\">\noracle@srv01:~\/ [MYDB] cd \/u01\/app\/dbvisit\/standbymp\/oracle\/\n\noracle@srv01:\/u01\/app\/dbvisit\/standbymp\/oracle\/ [MYDB] .\/dbvctl -o setup\n\n\n=========================================================\n\n     Dbvisit Standby Database Technology (11.4.1)\n           http:\/\/www.dbvisit.com\n\n=========================================================\n\n=&gt;dbvctl only needs to be run on the primary server.\n\nIs this the primary server?  [Yes]:\nThe following Dbvisit Database configuration (DDC) file(s) found on this\nserver:\n\n     DDC\n     ===\n1)   Create New DDC\n2)   Cancel\n\nPlease enter choice [] : 1\n\nIs this correct?  [Yes]:\n\n=========================================================\nDbvisit Standby setup begins.\n=========================================================\nThe following Oracle instance(s) have been found on this server:\n\n     SID            ORACLE_HOME\n     ===            ===========\n1)   MYDB         \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\n2)   Enter own ORACLE_SID and ORACLE_HOME\nPlease enter choice [] : 1\n\nIs this correct?  [Yes]:\n=&gt;ORACLE_SID will be: MYDB\n=&gt;ORACLE_HOME will be: \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\n\n------------------------------------------------------------------------------\nEnter the primary server name.\nNote: The hostname is case sensitive on UNIX based systems.\n=&gt;SOURCE is [srv01]:\nYour input: srv01\n\nIs this correct?  [Yes]:\nChoice is srv01\n\n------------------------------------------------------------------------------\nPlease enter a filesystem directory that Dbvisit Standby use to store (archive)\nlog files.  This directory is not the same as the database recovery area or\narchive destinations and should not be located in these areas.\nThe ARCHSOURCE directory is located on the primary server and will become the\nARCHDEST location when the primary database is converted to a standby database\nduring a Graceful Switchover operation.\nThis directory will ONLY contain (archive) log files related to this database.\nIt should not contain any other (non archive log) files.\nPlease ensure that this directory exists on\n\n=&gt;ARCHSOURCE is [\/u01\/app\/oracle\/dbvisit_arch\/MYDB_SITE1]: \/u90\/dbvisit_arch\/MYDB\nYour input: \/u90\/dbvisit_arch\/MYDB\n\nIs this correct?  [Yes]:\nChoice is \/u90\/dbvisit_arch\/MYDB\n\n------------------------------------------------------------------------------\nSpecify the DBVNET port number on the primary server. If unsure leave at\ndefault\n=&gt;NETPORT is [7890]:\nYour input: 7890\n\nIs this correct?  [Yes]:\nChoice is 7890\n\n------------------------------------------------------------------------------\nEnter the standby database hostname.\n\nIf the standby database will be Oracle RAC enabled:\nEnter the the Virtual Hostname (linked to a Virtual IP) for standby database.\nThis virtual hostname is attached to a VIP that will be able to move between\nthe RAC nodes. Dbvisit Standby will only run on the server where this virtual\nhostname (VIP) resource is running.\nThe Virtual Hostname (and VIP) should be configured as a resouce in clusterware\nand must be enabled and started on one of the nodes before yo continue with the\nsetup.  If you are not using a Virtual Hostname (Highly Recommended), Dbvisit\nStandby can only be configured to run on one dedicated node in the RAC\nconfiguration - specify the hosts name here if you do not have a Virtual\nHostname (attached to VIP) for the cluster configured.\nFor non-RAC configurations specify the standby database server name here.\n\n=&gt;DESTINATION is []: srv02\nYour input: srv02\n\nIs this correct?  [Yes]:\nChoice is srv02\n\n------------------------------------------------------------------------------\nSpecify the DBVNET port number on the standby server. If unsure leave at\ndefault\n=&gt;NETPORT_DR is [7890]:\nYour input: 7890\n\nIs this correct?  [Yes]:\nChoice is 7890\n\n------------------------------------------------------------------------------\nEnter Dbvisit Standby installation directory on the standby server\n=&gt;DBVISIT_BASE_DR is [\/u01\/app\/dbvisit\/standbymp]:\nYour input: \/u01\/app\/dbvisit\/standbymp\n\nIs this correct?  [Yes]:\nChoice is \/u01\/app\/dbvisit\/standbymp\n\n------------------------------------------------------------------------------\nEnter ORACLE_HOME directory on the standby server\n=&gt;ORACLE_HOME_DR is [\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0]:\nYour input: \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\n\nIs this correct?  [Yes]:\nChoice is \/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\n\n------------------------------------------------------------------------------\nEnter DB_UNIQUE_NAME on the standby server\n=&gt;DB_UNIQUE_NAME_DR is [MYDB_SITE1]: MYDB_SITE2\nYour input: MYDB_SITE2\n\nIs this correct?  [Yes]:\nChoice is MYDB_SITE2\n\n------------------------------------------------------------------------------\nPlease enter the directory where Dbvisit Standby will transfer the (archive)\nlog files to on standby server.   This directory is not the same as the\ndatabase recovery area or archive destinations and should not be located in\nthese areas.\nThis directory should ONLY contain (archive) log files related to this\ndatabase. It should not contain any other (non archive log) files.\nPlease ensure that this directory exists on the standby server\n\n=&gt;ARCHDEST is [\/u90\/dbvisit_arch\/MYDB]:\nYour input: \/u90\/dbvisit_arch\/MYDB\n\nIs this correct?  [Yes]:\nChoice is \/u90\/dbvisit_arch\/MYDB\n\n------------------------------------------------------------------------------\nEnter ORACLE_SID on the standby server\n=&gt;ORACLE_SID_DR is [MYDB]:\nYour input: MYDB\n\nIs this correct?  [Yes]:\nChoice is MYDB\n\n------------------------------------------------------------------------------\nEnter ASM instance name on the standby server, if your standby is using ASM.\nIf you are not using ASM on the standby or standby is ACFS leave the value\nnull.\n=&gt;ORACLE_SID_ASM_DR is []:\n\nIs this correct?  [Yes]:\nChoice is null\n\n------------------------------------------------------------------------------\nPlease specify the name of the Dbvisit Database configuration (DDC) file.\nThe DDC file is a plain text file that contains all the Dbvisit Standby\nsettings.\n=&gt;ENV_FILE is [MYDB_SITE1]: MYDB\nYour input: MYDB\n\nIs this correct?  [Yes]:\nChoice is MYDB\n\n------------------------------------------------------------------------------\nProvide license key.\n=&gt;LICENSE_KEY is []: *****-*****-*****-*****-*****-*****-*****\nYour input: *****-*****-*****-*****-*****-*****-*****\n\nIs this correct?  [Yes]:\nChoice is *****-*****-*****-*****-*****-*****-*****\n\n------------------------------------------------------------------------------\n\n\nBelow are the list of configuration variables provided during the setup\nprocess:\n\nConfiguration Variable             Value Provided\n======================             ==============\nORACLE_SID                         MYDB\nORACLE_HOME\n\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\n\nSOURCE                             srv01\nARCHSOURCE                         \/u90\/dbvisit_arch\/MYDB\nNETPORT                            7890\nDESTINATION                        srv02\nNETPORT_DR                         7890\nDBVISIT_BASE_DR                    \/u01\/app\/dbvisit\/standbymp\nORACLE_HOME_DR\n\/u01\/app\/oracle\/product\/19_20_0_0_RU230718_v0\nDB_UNIQUE_NAME_DR                  MYDB_SITE2\nRAC_DR                             N\nARCHDEST                           \/u90\/dbvisit_arch\/MYDB\nORACLE_SID_DR                      MYDB\nENV_FILE                           MYDB\nLICENSE_KEY                        *****-*****-*****-*****-*****-*****-*****\n\nAre these variables correct?  [Yes]:\n\n&gt;&gt;&gt; Dbvisit Database configuration (DDC) file MYDB created.\n\n&gt;&gt;&gt; Dbvisit Database repository (DDR) MYDB created.\n   Repository Version          11.0\n   Software Version            11.0\n   Repository Status           VALID\n\n&gt;&gt;&gt; Created a matching configuration in the Control Center.\n\nPID:5554\nTRACE:dbvisit_install.log\n<\/pre>\n<\/br>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>Make sure your ORACLE_HOME value in the oratab is not finishing with a &#8220;\/&#8221;. I was already facing the same problem with Oracle Data Guard configuration having DGMGRL static entry in the listener that were configured with a ORACLE_HOME value finishing with a &#8220;\/&#8221;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I recently deployed a new installation at one customer with 2 linux servers and 2 Oracle SE2 databases with dbvisit StandbyMP v11 disaster recovery solution. I prepared the standby database using RMAN duplication method, and then just wanted to create the dbvisit DDC configuration using CLI command. I had to troubleshoot one error, and wanted [&hellip;]<\/p>\n","protected":false},"author":48,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[372,790,3208],"type_dbi":[],"class_list":["post-30000","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-dbvisit","tag-disaster-recovery","tag-oracle-se2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed. - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed.\" \/>\n<meta property=\"og:description\" content=\"I recently deployed a new installation at one customer with 2 linux servers and 2 Oracle SE2 databases with dbvisit StandbyMP v11 disaster recovery solution. I prepared the standby database using RMAN duplication method, and then just wanted to create the dbvisit DDC configuration using CLI command. I had to troubleshoot one error, and wanted [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-29T09:33:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-29T09:33:52+00:00\" \/>\n<meta name=\"author\" content=\"Marc Wagner\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marc Wagner\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\"},\"author\":{\"name\":\"Marc Wagner\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628\"},\"headline\":\"dbvisit StandbyMP with Oracle SE2 &#8211; ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed.\",\"datePublished\":\"2023-12-29T09:33:51+00:00\",\"dateModified\":\"2023-12-29T09:33:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\"},\"wordCount\":261,\"commentCount\":0,\"keywords\":[\"dbvisit\",\"disaster recovery\",\"Oracle SE2\"],\"articleSection\":[\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\",\"name\":\"dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed. - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2023-12-29T09:33:51+00:00\",\"dateModified\":\"2023-12-29T09:33:52+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"dbvisit StandbyMP with Oracle SE2 &#8211; ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628\",\"name\":\"Marc Wagner\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g\",\"caption\":\"Marc Wagner\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/marc-wagner\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed. - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/","og_locale":"en_US","og_type":"article","og_title":"dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed.","og_description":"I recently deployed a new installation at one customer with 2 linux servers and 2 Oracle SE2 databases with dbvisit StandbyMP v11 disaster recovery solution. I prepared the standby database using RMAN duplication method, and then just wanted to create the dbvisit DDC configuration using CLI command. I had to troubleshoot one error, and wanted [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/","og_site_name":"dbi Blog","article_published_time":"2023-12-29T09:33:51+00:00","article_modified_time":"2023-12-29T09:33:52+00:00","author":"Marc Wagner","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Marc Wagner","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/"},"author":{"name":"Marc Wagner","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628"},"headline":"dbvisit StandbyMP with Oracle SE2 &#8211; ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed.","datePublished":"2023-12-29T09:33:51+00:00","dateModified":"2023-12-29T09:33:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/"},"wordCount":261,"commentCount":0,"keywords":["dbvisit","disaster recovery","Oracle SE2"],"articleSection":["Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/","url":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/","name":"dbvisit StandbyMP with Oracle SE2 - ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed. - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2023-12-29T09:33:51+00:00","dateModified":"2023-12-29T09:33:52+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/dbvisit-standbymp-with-oracle-se2-error_code808-database-in-unknown-mode-94-setup-cannot-proceed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"dbvisit StandbyMP with Oracle SE2 &#8211; ERROR_CODE:808 Database in unknown mode (94). Setup cannot proceed."}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/225d9884b8467ead9a872823acb14628","name":"Marc Wagner","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a873cc6e7fbdbbcbdbcaf5dbded14ad9a77b2ec2c3e03b4d724ed33d35d5f328?s=96&d=mm&r=g","caption":"Marc Wagner"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/marc-wagner\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30000","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/48"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=30000"}],"version-history":[{"count":9,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30000\/revisions"}],"predecessor-version":[{"id":30009,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30000\/revisions\/30009"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=30000"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=30000"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=30000"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=30000"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}