Hello,
I'm trying to track down a table that stores the Dataset info.
following this post, How to determine current edit session locking a version? ,
I'm trying something similar, but want to trace the tables back to their Dataset. How can I add to this query to do that? I can't seem to find Dataset info anywhere in the sql tables.
SELECT
v.name as version_name,
pri.owner as data_owner,
tr.table_name,
tl.*
FROM sde.sde_versions v
JOIN sde.SDE_state_locks sl ON sl.state_id = v.state_id
JOIN sde.SDE_process_information pri ON pri.sde_id = sl.sde_id
JOIN sde.sde_table_locks tl ON tl.sde_id = pri.sde_id
JOIN sde.sde_table_registry tr ON tr.registration_id = tl.registration_id
order by lock_time desc
Thanks,
Dave