03-19-2008 08:42 AM
11-28-2017 07:16 PM
Old thread, but in case it is helpful, in 5.x you can also use the Node Browser at /alfresco to browse the same path and delete exactly the module you need to.
03-23-2008 12:19 AM
03-26-2008 06:03 AM
04-16-2009 04:26 AM
09-14-2009 06:10 AM
09-15-2009 06:57 AM
Primary Path: /{http://www.alfresco.org/model/system/1.0}system-registry/{http://www.alfresco.org/system/modules/1.0...
with 4 children, corrisponding to my old 4 modules, now uninstalled. 11-20-2009 02:34 AM
01-26-2011 10:28 PM
mysql> SELECT * FROM alf_qname WHERE alf_qname.id IN (34, 59, 62, 101, 102 );
+—–+———+——-+——————+
| id | version | ns_id | local_name |
+—–+———+——-+——————+
| 34 | 1 | 3 | name |
| 59 | 1 | 5 | container |
| 62 | 1 | 5 | store_root |
| 101 | 1 | 8 | currentVersion |
| 102 | 1 | 8 | installedVersion |
+—–+———+——-+——————+
5 rows in set (0.00 sec)
mysql> SELECT node_id, qname_id, locale_id, string_value FROM alf_node_properties WHERE qname_id IN (101, 102) ORDER BY node_id;
+———+———-+———–+————–+
| node_id | qname_id | locale_id | string_value |
+———+———-+———–+————–+
| 2345995 | 101 | 1 | 2.1.13 |
| 2345995 | 102 | 1 | 2.1.13 |
| 3216313 | 101 | 1 | 2.4.0 |
| 3216313 | 102 | 1 | 2.4.0 |
| 3216314 | 101 | 1 | 2.4.0 |
| 3216314 | 102 | 1 | 2.4.0 |
| 3216315 | 101 | 1 | 2.4.0 |
| 3216315 | 102 | 1 | 2.4.0 |
+———+———-+———–+————–+
8 rows in set (0.00 sec)
I want to change 2.4.0 version of my module, so the first 2 lines are irrelevant. I have 3 node_ids of interest (3216313, 3216314, 3216315). Yours will/should be different.
mysql> SELECT node_id, qname_id, locale_id, string_value FROM alf_node_properties WHERE node_id IN (3216313, 3216314, 3216315) ;
+———+———-+———–+——————-+
| node_id | qname_id | locale_id | string_value |
+———+———-+———–+——————-+
| 3216313 | 34 | 1 | content-********* |
| 3216313 | 101 | 1 | 2.4.0 |
| 3216313 | 102 | 1 | 2.4.0 |
| 3216314 | 34 | 1 | ******-content |
| 3216314 | 101 | 1 | 2.4.0 |
| 3216314 | 102 | 1 | 2.4.0 |
| 3216315 | 34 | 1 | ******-alfresco |
| 3216315 | 101 | 1 | 2.4.0 |
| 3216315 | 102 | 1 | 2.4.0 |
+———+———-+———–+——————-+
9 rows in set (0.00 sec)
So, I have 3 modules installed. ******-alfresco is the one I want to change/downgrade to version 2.1.1
mysql> UPDATE alf_node_properties SET string_value = '2.1.1' WHERE node_id = 3216315 AND qname_id IN (101, 102);
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2 Changed: 2 Warnings: 0
mysql> SELECT node_id, qname_id, locale_id, string_value FROM alf_node_properties WHERE node_id = 3216315 ;
+———+———-+———–+—————–+
| node_id | qname_id | locale_id | string_value |
+———+———-+———–+—————–+
| 3216315 | 34 | 1 | ******-alfresco |
| 3216315 | 101 | 1 | 2.1.1 |
| 3216315 | 102 | 1 | 2.1.1 |
+———+———-+———–+—————–+
3 rows in set (0.00 sec)
06-30-2014 02:47 PM
08-25-2014 12:29 PM
select local_name, id from alf_qname where local_name in ('currentVersion', 'installedVersion')
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.