mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
72007: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (4.3/Cloud) 71834: Merged V4.1-BUG-FIX (4.1.9) to V4.2-BUG-FIX (4.2.3) 71763: Merged DEV to V4.1-BUG-FIX (4.1.9) 71455: MNT-10067 : Cleanup alf_prop_XXX data Fixed queries, separated the creation of tables. 71491: MNT-10067 : Cleanup alf_prop_XXX data Changes to MySQl script: - Added index to the id column in temp tables. - Removed transaction marks. - Changed the format of temp tables to MyISAM. 71756: MNT-10067 : Cleanup alf_prop_XXX data Implemented the changes to the scripts for all DBs. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@74729 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
15 lines
483 B
SQL
15 lines
483 B
SQL
--BEGIN TXN
|
|
|
|
-- cleanup temporary structures
|
|
drop table temp_prop_root_ref; --(optional)
|
|
drop table temp_prop_root_obs; --(optional)
|
|
drop table temp_prop_val_ref; --(optional)
|
|
drop table temp_prop_val_obs; --(optional)
|
|
drop table temp_del_str1; --(optional)
|
|
drop table temp_del_str2; --(optional)
|
|
drop table temp_del_ser1; --(optional)
|
|
drop table temp_del_ser2; --(optional)
|
|
drop table temp_del_double1; --(optional)
|
|
drop table temp_del_double2; --(optional)
|
|
|
|
--END TXN |