简体   繁体   English

如何根据Web Player临时文件夹的内容在库中查找DXP文件

[英]How to locate the DXP files in library based on the content of Web Player temp folder

My scenario is that I have a list of files with .DXP extension which are a temporary files stored in web player installation and are used for caching purposes. 我的方案是我有一个扩展名为.DXP的文件列表,这些文件是存储在Web播放器安装中的临时文件,用于缓存目的。

I need to find which files are they in the library as they dont have their original names but just some autogenerated GUID or other ID and the extension. 我需要找到它们在库中的文件,因为它们没有原始名称,只有一些自动生成的GUID或其他ID和扩展名。

Any clues ? 有线索吗?

在此输入图像描述

You'll have to query the spotfire databases. 你必须查询spotfire数据库。 This should be what you're looking for. 这应该是你正在寻找的。

select 
    i.ITEM_ID
    ,i.TITLE
    ,i.DESCRIPTION
    ,i.CREATED
    ,CREATED_BY = u.DISPLAY_NAME
    ,CREATED_BY_USERNAME = u.USER_NAME
    ,i.MODIFIED
    ,t.LABEL 
    ,t.DISPLAY_NAME
from 
    LIB_ITEMS i
inner join
    LIB_ITEM_TYPES t on 
    t.TYPE_ID = i.ITEM_TYPE
inner join
    USERS u on 
    u.USER_ID = i.CREATED_BY
order by
    i.ITEM_ID

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM