Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Is there any way to find the filevault location and filename for the latest version of a cad filename?
Joe
Is there any way to do it from SQLPlus.
Thank you everybody for the responses. You guys have given me plenty to work with.
joe
Has anyone out there used a sqlplus query to locate either of the following ?
1) The latest iteration of the last revision.
2) All iterations except for the last iteration of the last revision.
Randy and Chris - thanks for the tips, Im getting closer but still not there yet
I have a sqlplus query that I need to locate all iterations except for the lastiteration of the last rev.
Thinking of using a MAX function for the versionsortida2versioninfo but can quite get the syntax correct.
Any ideas of how to modify the code below to find all but the last iteration of the last rev ?
select
epmdocumentmaster.name,
epmdocument.statestate,
epmdocument.latestiterationinfo,
epmdocument.versionida2versioninfo,
epmdocument.iterationida2iterationinfo,
epmdocument.IDA2A2,
epmdocumentmaster.IDA2A2,
epmdocument.IDA3MASTERREFERENCE,
epmdocument.VERSIONSORTIDA2VERSIONINFO "VSORT"
from
epmdocument,epmdocumentmaster
where
epmdocumentmaster.ida2a2=epmdocument.ida3masterreference
and
epmdocumentmaster.name like '999-%.drw'
/* epmdocument.latestiterationinfo=0 */
order by epmdocument.ida2a2
;
exit
From the responses that I recieved I bulit the SQL script below to create a text file to include with my backups.
The problem is that there are no family table generics included in the query results. What seems to be weird is that the instances of the family table models have file associated with them.
Does anybody know what is wrong with the query?
Joe
The following is the output from the custom SQL
MyAssembly_1.asm|1185522|A|2|d:\ptc\FILEVAULT\filevault_Folder_24\000000001216f2
MyPart_1.prt|1185396|A|2|d:\ptc\FILEVAULT\filevault_Folder_24\00000000121674
MyPart_1.prt|947365|A|1|d:\ptc\FILEVAULT\filevault_Folder_19\000000000e74a5
MyPart_2.prt|947364|A|1|d:\ptc\FILEVAULT\filevault_Folder_19\000000000e74a4
MyPart_3.prt|947363|A|1|d:\ptc\FILEVAULT\filevault_Folder_19\000000000e74a3