04-23-2007 09:57 AM
WHERE Service='FileFolderService' AND method='copy' AND fail='0' AND return_val LIKE '%isFolder=yes%'
LIKE '%isFolder=yes%'.
The % is on the beginning of the guard. This SQL statement will be definitely slow. Is there any better solution?05-25-2007 05:51 AM
05-25-2007 06:13 AM
06-05-2007 07:23 AM
06-06-2007 08:59 AM
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='create' and fail ='0' and arg_3= '{http://www.alfresco.org/model/content/1.0}content'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='move' and fail='0' and return_val like '%isFolder=false%'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='copy' and fail='0' and return_val like '%isFolder=false%'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='CheckoutCheckinService' and method='checkout' and fail='0'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='CheckoutCheckinService' and method='checkin' and fail='0'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='create' and fail ='0' and arg_3='{http://www.alfresco.org/model/content/1.0}folder'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='create' and arg_3='{http://www.alfresco.org/model/forum/1.0}topic'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='FileFolderService' and method='create' and arg_3='{http://www.alfresco.org/model/forum/1.0}post'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
where Service='AuthenticationService' and method='authenticate'
select * from alf_audit_fact fact
join alf_audit_date date on fact.audit_date_id = date.id
join alf_audit_source source on fact.audit_source_id = source.id
Service='PersonService' and method='createPerson' and fail='0'
06-06-2007 09:42 AM
Download Content
Not implemented by Alfresco. As far I understood, downloading a document does not involve any Service and consequently the action cannot be logged. Any suggestion to get this action logged?
06-08-2007 07:54 AM
06-11-2007 10:14 AM
…
<Service name="FileFolderService" mode="none" enabled="true">
<Method name="rename" mode="all"/>
<Method name="move" mode="all"/>
<Method name="copy" mode="all" auditInternal="true" enabled="true" />
<Method name="create" mode="all" enabled="true"/>
<Method name="delete" mode="all" auditInternal="true" enabled="true"/>
<Method name="makeFolders" mode="all"/>
<Method name="getWriter" mode="all" enabled="true"/>
</Service>
…
06-12-2007 08:03 AM
06-09-2008 03:40 AM
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.