---
title: "Moving Signup Clients to a new Branch without loosing transactional data."
slug: "moving-signup-clients-to-a-new-branch-without-loosing-transactional-data"
updated: 2024-04-11T08:40:40Z
published: 2024-04-11T08:40:40Z
canonical: "kb.pharos.com/moving-signup-clients-to-a-new-branch-without-loosing-transactional-data"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://kb.pharos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Moving Signup Clients to a new Branch without loosing transactional data.

How can you move Signup Clients (computers) from one Branch to Another without loosing the transactional data?

---

The only way to move the pc's would be using a sql query.

Note: moved transactions will be assigned to the new group/type that the machine is placed in. The transactions stay with the individual PC.

The following are the tables of interest in the DB:

computers

computer_types

computer_groups From these 3 tables, you can work out which pc is in what group etc.

The following is a query to move a pc:

update computers set computer_type_id = 2, computer_group_id = 2 where computer_id = 2

In my scenario, I wanted to move a pc from Branch 1 in Computer Group 'Default Group' (computer_group = 1) and Computer Type 'Internet' (computer_type = 1) to Branch 2 in a different computer group and type.

After running the above query, a change control would still need to be performed to push the changes to the client pc's.

## Related

- [I am unable to update my Uniprint license key, I receive a CRC check error.](/i-am-unable-to-update-my-uniprint-license-key-i-receive-a-crc-check-error.md)
- [Secure Print Failover FAQs](/secure-print-failover-faqs.md)
- [Blueprint Enterprise 5.3/Uniprint 9.2 Interoperability with Pharos iMFP for Konica-Minolta 1.5.x and 2.x](/blueprint-enterprise-53uniprint-92-interoperability-with-pharos-imfp-for-konica-minolta-15x-and-2x.md)
- [Secure Release Technical Overview](/secure-release-technical-overview.md)
