I had an ESX 4.0 upgraded today to ESXi 4.1 update2 but Veeam6 doesn't reconnect to it
Below is error when I try to reconnect. SSH is enabled. I disconnect and reconnect but errors everytime

Please help

Code: Select all
BEGIN TRANSACTION
 
UPDATE O
SET
      O."type" = N."type",
      O."reference" = N."reference"
FROM [Hosts] AS O
 
INNER JOIN [Hosts] as N
      on O."name" = N."name"
where N."name" in (
            SELECT "name"
            FROM [Hosts]
            where ("type"=6 or "type"=0)
            GROUP BY "name"
            HAVING COUNT(*)>1)
and N.reference in ( 
                  SELECT reference
                  FROM [Hosts]
                  where "name" in (
                              SELECT "name"
                              FROM [Hosts]
                              where ("type"=6 or "type"=0)
                              GROUP BY "name"
                              HAVING COUNT(*)>1)
                  and "type"=6)
and O."type" = 0
and O."type" != N."type"
 
UPDATE Hosts
set "type"=-3
where info LIKE 'VMware ESXi 4%' and "name" IN (SELECT "name"
FROM [Hosts]
where "name" in (
                        SELECT "name"
                        FROM [Hosts]
                        where ("type"=6 or "type"=0)
                        GROUP BY "name"
                        HAVING COUNT(*)>1)
and "type"=6)
 
DELETE 
FROM [Hosts]
where "type"=-3
COMMITUsers browsing this forum: Google [Bot] and 7 guests