Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/kubernetes/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Visual studio 记事本中的SSIS包文件(.dtsx xml版本)_Visual Studio_Ssis_Msbi - Fatal编程技术网

Visual studio 记事本中的SSIS包文件(.dtsx xml版本)

Visual studio 记事本中的SSIS包文件(.dtsx xml版本),visual-studio,ssis,msbi,Visual Studio,Ssis,Msbi,我有一个巨大的SSIS包列表,我想知道是否有包使用了buffertempstorepath参数的默认路径。为了快速完成这项工作,我想用这个参数进行记事本搜索,在这里我发现这个参数并不存在于所有xml版本中 有人知道包xml结构是否相似吗?否则,如果此参数出现在软件包上,而其他软件包上则不显示?bufferTempStoragePath已作为选项返回到2005版SSIS,直至当前(2017)版本 但是,它是数据流任务的一个属性。如果包没有数据流任务,则在搜索中不会有任何点击。如果在一个包中有3个D

我有一个巨大的SSIS包列表,我想知道是否有包使用了
buffertempstorepath
参数的默认路径。为了快速完成这项工作,我想用这个参数进行记事本搜索,在这里我发现这个参数并不存在于所有xml版本中


有人知道包xml结构是否相似吗?否则,如果此参数出现在软件包上,而其他软件包上则不显示?

bufferTempStoragePath
已作为选项返回到2005版SSIS,直至当前(2017)版本

但是,它是数据流任务的一个属性。如果包没有数据流任务,则在搜索中不会有任何点击。如果在一个包中有3个DFT,则在搜索时将有三个属性命中

我能够使用命令提示符合理地识别设置了/未设置(或存在)的包

type
将列出文件的内容
|
将前面命令(类型)的结果导入下一个进程
find
执行区分大小写的文本搜索

结果看起来像

dba_178090.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

Package1.dtsx



Package2.dtsx



Package3.dtsx


      bufferTempStoragePath="C:\tmp"
      bufferTempStoragePath="C:\src"
      bufferTempStoragePath="V:\"

RecordKeyTyping.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

so_43721322.dtsx



so_45063165.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

so_49262851.dtsx

感谢您的回复,请注意,我有使用DFT的包,但在这些包的xml版本中找不到bufferTempStoragePath参数。
dba_178090.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

Package1.dtsx



Package2.dtsx



Package3.dtsx


      bufferTempStoragePath="C:\tmp"
      bufferTempStoragePath="C:\src"
      bufferTempStoragePath="V:\"

RecordKeyTyping.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

so_43721322.dtsx



so_45063165.dtsx


        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

so_49262851.dtsx
---------- .\DBA_178090.DTSX
        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

---------- .\PACKAGE1.DTSX

---------- .\PACKAGE2.DTSX

---------- .\PACKAGE3.DTSX
          bufferTempStoragePath="C:\tmp"
          bufferTempStoragePath="C:\src"
          bufferTempStoragePath="V:\"

---------- .\RECORDKEYTYPING.DTSX
        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

---------- .\SO_43721322.DTSX

---------- .\SO_45063165.DTSX
        <pipeline BLOBTempStoragePath="" bufferTempStoragePath="" name="pipelineXml" version="1">

---------- .\SO_49262851.DTSX