select
server
from
org.alfresco.repo.domain.hibernate.ServerImpl as server
where
server.ipAddress = :ipAddress
select
txn
from
org.alfresco.repo.domain.hibernate.TransactionImpl as txn
where
txn.id = :txnId
select
min(txn.commitTimeMs)
from
org.alfresco.repo.domain.hibernate.TransactionImpl as txn
select
max(txn.commitTimeMs)
from
org.alfresco.repo.domain.hibernate.TransactionImpl as txn
= :fromTimeInclusive and
txn.commitTimeMs < :toTimeExclusive and
txn.id not in (:excludeTxnIds) and
txn.server.id not in (:excludeServerIds)
order by
txn.commitTimeMs asc,
txn.id asc
]]>
= :fromTimeInclusive and
txn.commitTimeMs < :toTimeExclusive and
txn.id not in (:excludeTxnIds) and
txn.server.id not in (:excludeServerIds)
order by
txn.commitTimeMs desc,
txn.id desc
]]>
select
count(txn.id)
from
org.alfresco.repo.domain.hibernate.TransactionImpl as txn
select
count(node.uuid)
from
org.alfresco.repo.domain.hibernate.NodeImpl as node
join node.transaction as txn
where
txn.id = :txnId and
node.deleted = false
select
count(node.uuid)
from
org.alfresco.repo.domain.hibernate.NodeImpl as node
join node.transaction as txn
where
txn.id = :txnId and
node.deleted = true
select
node
from
org.alfresco.repo.domain.hibernate.NodeImpl as node
where
node.transaction.id = :txnId and
node.store.protocol = :protocol and
node.store.identifier = :identifier
select
node
from
org.alfresco.repo.domain.hibernate.NodeImpl as node
where
node.transaction.id = :txnId
= :minTxnId and
txn.commitTimeMs <= :maxCommitTime
order by
txn.id asc
]]>