Community Tip - You can change your system assigned username to something more personal in your community settings. X
Management is looking for a listing of all items contained in Windchill. They would like: Number, Name, Version and State. Does someone have a report that they may share that generates this information? Lacking an existing query report, can someone share how to build one?
Being an "Intralink 8.x" user, I don't have any reporting tools at my disposal other than running SQL queries from the command line. The downside to that is I don't have any idea how the tables are structured and which table contains what data. The queries I have were supplied to me by various people including PTC Tech Support & some on this list.
I would like to run a query and save the contents to a textfile that gives me the following information:
NUMBER,latest Revision, latest Iteration, Context &Folder,LastModified, Generic?, Instance?, Name
Ideally Context and Folder would be concatenated together (I could do this afterwards if necessary). Generic and Instance would be True / False or Yes / No.
This query would be run against all the data in our system (we have about 163,000 latest objects)
Would anyone be able to show me how to structure a SQLPlus query that would generate that for me including writing it to disk? We're running the Intralink version of Windchill 10.1 M040
Thanks in advance for any suggestions!
Andrew Mansfield
In Reply to Mike Lockwood:
Much easier to get from the database. Export each result.
* Product Data
o WTParts (if you use): select wtpartnumber from wtpartmaster
o EPMDoc's: select documentnumber from epmdocumentmaster
o WTDoc's: select documentnumber from wtdocumentmaster
* Change Objects (if you use)
o Promotion Requests: select name from promotionnotice
o Problem Reports: select name from wtchangissuemaster
o Change Requests: select name from wtchangerequest2master
o Change Notices: select name from wtchangeorder2master
o Change Activities: select name from wtchangeactivitymaster
* Other
o Processes: select name from wfprocess
