User Tools

Site Tools


confluence_sql_queries

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
confluence_sql_queries [2018/09/20 11:49]
pawel
confluence_sql_queries [2018/09/20 12:11] (current)
pawel
Line 2: Line 2:
 Below is the list of SQL queries to perform tasks directly on the database. Please note that you should always shut down Confluence & backup your database before performing any of these queries. Below is the list of SQL queries to perform tasks directly on the database. Please note that you should always shut down Confluence & backup your database before performing any of these queries.
 === Find all spaces and the space owner === === Find all spaces and the space owner ===
 +<code java>
 +select s.SPACEKEY, s.SPACENAME, u.username, u1.first_name, u1.last_name, u1.email_address
 +from SPACES s
 +join SPACEPERMISSIONS p ON s.SPACEID = p.SPACEID
 +join user_mapping u on p.PERMUSERNAME = u.user_key
 +join cwd_user u1 on u.username = u1.user_name
 +where p.PERMTYPE = 'SETSPACEPERMISSIONS';
 +</code>
confluence_sql_queries.1537458578.txt.gz ยท Last modified: 2018/09/20 11:49 by pawel