Knowledge:Convert database users to ldap

From OpenKM Documentation
Revision as of 13:11, 4 October 2012 by Jllort (talk | contribs)

Jump to: navigation, search

ORACLE

For each user should create new user and delete older: Create new user:

SELECT 'INSERT INTO OKM_USER (USR_ID, USR_NAME, USR_PASSWORD, USR_EMAIL, USR_ACTIVE) VALUES (''' || 'newname' || ''', ''' || USR_NAME || ''', ''' || USR_PASSWORD || ''', ''' || USR_EMAIL || ''', ''' || USR_ACTIVE || ''');' FROM OKM_USER  WHERE USR_ID='oldername';
SELECT 'INSERT INTO OKM_USER_ROLE (UR_USER, UR_ROLE) VALUES (''' || 'newname'|| ''', ''ROLE' || UR_ROLE || ''');' FROM OKM_USER_ROLE where UR_USER='oldername';