Last active
February 25, 2016 00:52
-
-
Save dwallraff/7c9715e230fba0ba8015 to your computer and use it in GitHub Desktop.
CCDB Service removal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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