MID Server Credentials Overwritten by CloneIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms After a clone is completed, MID server credentials are no longer working on the target instance. Release All Supported Releases Cause This is usually caused by preserving the sys_user table without excluding it as well. For MID server authentication, a local sys_user record with the 'mid_server' role is used. When you configure a data preserver, it will apply the preserved data on top of the cloned data. Without also excluding the data also, the MID server user will be cloned down from prod, and then the preserved MID server user will be applied right on top of it. Since there is a unique index on the user_name field on the sys_user_table, this insert will be blocked. Resolution It is not recommended to preserve or exclude the sys_user table for any reason. If some users must be preserved between instances, it is recommended to export them to XML. The user_name value must also be unique, since you cannot have more than one sys_user record with the same user_name value. Additional Information Data Preservation