Windchill BLOB Data - Stream Data Table analysis
Version: Windchill 12.1
Use Case: Analysis of Stream data
Description:
Analysing the stream data - count of object types per organization
Version: Windchill 12.1
Use Case: Analysis of Stream data
Description:
Analysing the stream data - count of object types per organization
If you are looking to count how many objects from each organization are stored in blobs (in stream data), you need to build a query using the application data table.
Below is a sample query that will give you the object types stored in the blob table. Please join the holdertoContent table to WTDocument, EPMDocument, and other objects as necessary:
SELECT hc.CLASSNAMEKEYROLEAOBJECTREF, COUNT(1)
FROM ApplicationData a, holdertoContent hc
WHERE hc.IDA3b5 = a.ida2a2
AND a.classnamekeya5 = 'wt.content.StreamData'
GROUP BY hc.CLASSNAMEKEYROLEAOBJECTREF;Hope this helps
Thanks
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.