Skip to content

Instantly share code, notes, and snippets.

@dwallraff
Last active February 25, 2016 00:52
Show Gist options
  • Save dwallraff/7c9715e230fba0ba8015 to your computer and use it in GitHub Desktop.
Save dwallraff/7c9715e230fba0ba8015 to your computer and use it in GitHub Desktop.
CCDB Service removal
psql -h localhost -p 2544 -U admin ccdb
SELECT id,name FROM service_instances;
DELETE FROM service_instances WHERE id=X;
If that fails:
SELECT * FROM service_instance_operations WHERE service_instance_id=X;
DELETE FROM service_instance_operations WHERE service_instance_id=X;
DELETE FROM service_instances WHERE id=X;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment