Hello you all,
After playing with nuBuilder, creating tables and nuObjects (forms, etc.), I am now ready to create a new project. My question is how to proceed in order to get rid of nuObjects I created while playing with nuBuilder. I deleted all tables that did not start with the name zzzz_. What is the next step to delete nuObjects ? It would be nice if I did not have to reinstal nuBuilder Forte.
Regards,
Alex DP
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
How to start anew
-
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Re: How to start anew
Hi,
Run all these queries (create a backup first by exporting the db to a sql file)
Deletes all records that do not start with ids starting with 'nu'
Run all these queries (create a backup first by exporting the db to a sql file)
Deletes all records that do not start with ids starting with 'nu'
Code: Select all
DELETE FROM zzzzsys_form WHERE zzzzsys_form_id NOT LIKE 'nu%' ;
DELETE FROM zzzzsys_object WHERE zzzzsys_object_id NOT LIKE 'nu%';
DELETE FROM zzzzsys_event WHERE zzzzsys_event_id NOT LIKE 'nu%';
DELETE FROM zzzzsys_file WHERE zzzzsys_file_id NOT LIKE 'nu%';
DELETE FROM zzzzsys_format WHERE zzzzsys_format_id NOT LIKE 'nu%';
DELETE FROM zzzzsys_php WHERE sph_zzzzsys_form_id NOT LIKE 'nu%' AND zzzzsys_php_id NOT LIKE 'nu%' ;
DELETE FROM zzzzsys_tab WHERE syt_zzzzsys_form_id NOT LIKE 'nu%';
Last edited by Anonymous on Sat Apr 21, 2018 4:40 pm, edited 1 time in total.
-
- Posts: 10
- Joined: Sat Sep 24, 2011 3:49 am