How to remove a Nintex Configuration database from a Sharepoint Farm ?
Run the following lines of code in a Sharepoint Powershell Management Shell to remove the configuration database.
$farm = Get-SPFarm;
$farm.properties["NW2007ConfigurationDatabase"]; $farm.properties["NW2007ConfigurationDatabase"] = “”;
$farm.Update();