01-03-2010 02:53 PM
01-08-2010 06:17 AM
01-08-2010 07:38 AM
01-09-2010 05:07 AM
Hola Cesar,
Viste este post??
http://forums.alfresco.com/en/viewtopic.php?f=3&t=642
The user passwords are stored as an MD5 password hash as a property off a user type in the system store. So it's in the node_properties table. Why do you need access to those values directly?
Saludos
01-11-2010 10:56 AM
select n.id, np2.string_value "username", n.uuid, np1.string_value "password" from alf_node n, alf_node_properties np1, alf_node_properties np2 where n.type_qname_id = 5 and n.id = np1.node_id and n.id = np2.node_id and np1.qname_id=10 and np2.qname_id=11;
+—–+———-+————————————–+———————————-+
| id | username | uuid | password |
+—–+———-+————————————–+———————————-+
| 4 | admin | e7486d5f-d576-4e06-bbcd-c6f2d253f4dc | 209c6174da490caeb4ssf3fa5a7ae634 |
| 559 | cesar | d6de1d95-ba64-46cb-b415-2626f6206b21 | a03b5ce62143a41d7c4sd3f20cb37f77 |
+—–+———-+————————————–+———————————-+
01-12-2010 06:33 AM
01-13-2010 06:41 AM
03-09-2011 11:13 AM
07-15-2011 04:43 AM
Bueno no estaba tan ahi….
select n.id, np2.string_value "username", n.uuid, np1.string_value "password" from alf_node n, alf_node_properties np1, alf_node_properties np2 where n.type_qname_id = 5 and n.id = np1.node_id and n.id = np2.node_id and np1.qname_id=10 and np2.qname_id=11;
+—–+———-+————————————–+———————————-+
| id | username | uuid | password |
+—–+———-+————————————–+———————————-+
| 4 | admin | e7486d5f-d576-4e06-bbcd-c6f2d253f4dc | 209c6174da490caeb4ssf3fa5a7ae634 |
| 559 | cesar | d6de1d95-ba64-46cb-b415-2626f6206b21 | a03b5ce62143a41d7c4sd3f20cb37f77 |
+—–+———-+————————————–+———————————-+
http://forums.alfresco.com/en/viewtopic.php?f=9&t=22817&p=74842
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.