Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. TRUNCATE TABLE ADMIN_EVENT_ENTITY;
  2. DROP TABLE ADMIN_EVENT_ENTITY;
  3. TRUNCATE TABLE CLIENT;
  4. TRUNCATE TABLE ADMIN_EVENT_ENTITY;
  5. TRUNCATE TABLE REALM;
  6. TRUNCATE TABLE USER_ENTITY;
  7. TRUNCATE TABLE USER_FEDERATION_PROVIDER;
  8. TRUNCATE TABLE USER_SESSION;
  9.  
  10.  
  11. drop TABLE CLIENT ;
  12. drop TABLE ADMIN_EVENT_ENTITY;
  13. drop TABLE REALM;
  14. drop TABLE USER_ENTITY;
  15. drop TABLE USER_FEDERATION_PROVIDER;
  16. drop TABLE USER_SESSION;
  17.  
  18. SET FOREIGN_KEY_CHECKS=0;
  19. truncate TABLE REALM;
  20. truncate TABLE CLIENT CASCADE;
  21. drop TABLE REALM CASCADE;
  22. drop TABLE CLIENT CASCADE;
  23. SET FOREIGN_KEY_CHECKS=1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement