cancel
Showing results for 
Search instead for 
Did you mean: 

Hostname of NBU client changes when reported in OC.

Jim-90
Level 6

An odd one ..possible bug?

Hostname of NBU client changes when reported in OC.   The name in NBU is correct but when it appears in OC reports it has been replaced by another client name.  Both hostnames are valid (in DNS) and can be forward/reversed looked up in DNS.

Anybody else seen this type of behaviour?

 

 

1 REPLY 1

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

Client ID could maybe be incorrect/duplicated in the OpsCenter Database.

 

This should show the client IDs of the 2 names you're working with (still new with sql queries)

 

select top 1
domain_jobarchive.clientname as "Name",
domain_jobarchive.clientid as "ID"
from domain_jobarchive where domain_jobarchive.clientname = 'incorrect name' AND (domain_jobarchive.clientid NOT IN (0 ))

 

select top 1
domain_jobarchive.clientname as "Name",
domain_jobarchive.clientid as "ID"
from domain_jobarchive where domain_jobarchive.clientname = 'correct name' AND (domain_jobarchive.clientid NOT IN (0 ))