You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Delete rows from VNetworkAdapter. Resolves#3 Does not address IP addresses assigned from a pool. Using Get-SCIPAddress -IPAddress 'a.b.c.d' | Revoke-SCIPAddress seems to work.
Potential fix committed to branch, but untested. I cleaned up my own DB identified by
select VNicID, [tbl_WLC_VNetworkAdapter].[HostId], [tbl_ADHC_Host].[HostID]
from [dbo].[tbl_WLC_VNetworkAdapter] left outer join [dbo].[tbl_ADHC_Host]
on [tbl_WLC_VNetworkAdapter].[HostId] = [tbl_ADHC_Host].[HostID]
where [tbl_ADHC_Host].[HostID] is null
and [tbl_WLC_VNetworkAdapter].[HostId] is not null
order by [tbl_WLC_VNetworkAdapter].[HostId]
with
select *
-- delete
from [dbo].[tbl_WLC_VNetworkAdapter]
where [dbo].[tbl_WLC_VNetworkAdapter].[HostId]
in (
select [tbl_WLC_VNetworkAdapter].[HostId]
from [dbo].[tbl_WLC_VNetworkAdapter] left outer join [dbo].[tbl_ADHC_Host]
on [tbl_WLC_VNetworkAdapter].[HostId] = [tbl_ADHC_Host].[HostID]
where [tbl_ADHC_Host].[HostID] is null
and [tbl_WLC_VNetworkAdapter].[HostId] is not null
)
Virtual network adapters are not cleaned up from [dbo].[tbl_WLC_VNetworkAdapter]
The text was updated successfully, but these errors were encountered: