登陆到SP,执行以下删除Tenants操作
psql -U admin fdb #登录Fabric Database数据库
select id, org_name from organization; #查找Tenant的ID
update organization set is_disabled='t' where id='xxxx'; #先关闭这个租户
delete from compute_pool where org_id=xxxx; #从计算资源中删除
delete from billing_summary where org_id=xxxx; #从订单信息中删除部署ta的操作记录
delete from organization where id=xxxx; #从租户信息中删除
delete from appliance where org_id=xxxx; #从appliance里面删除
\q #退出fdb
或者从SP里面找到租户的ID