> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Updating Existing Domain To New Registrar

|| Note: This is ONLY to update the domains registrar displayed in Clientexec, and does not actually transfer the domain to a new registrar.

In the event that you wish to move one of your clients domains to a new registrar, these instructions will help you with that.

1. First run this query, to find the ID of the customField (you can run the query at **Settings** > **Utilities** > **SQL Tool**.)

```java
SELECT id FROM customField where groupId=2 AND subGroupId=3 AND name='Registrar';
```

![](https://storage.crisp.chat/users/helpdesk/website/-/8/9/5/a/895a2775afb3f800/screenshot-2026-08-22-at-13-20_1b1vsev.png)

2. With that id (normally it will be 8 ) run the next query:

```java
update object_customField SET value='enom' WHERE customFieldId=8 AND objectid=27;
```

**Adjust these in the above Query to match your settings:**

value=newregistrar (in the example we used enom).
customFieldId=idFromFirstQuery (this is where we used the 8 from step one, if you got a different number then you would use that).
objectid=UserPackageId (this would be the user package ID of the domain you want to change to the new registrar, see screenshot below).

![](https://storage.crisp.chat/users/helpdesk/website/895a2775afb3f800/screenshot-2023-08-31-at-13-59_w3mdwf.png)

