2017-04-24 60 views
3

我在新的便攜式計算機上,在SQL Server Integration Services包中的Visual Studio 2015中工作。在Foreach循環編輯器中缺少枚舉器

在Visual Studio的早期版本有幾個選項枚舉器配置部分,像這樣...

enter image description here

在2015年VS,這部分是空白,我無法用數據來填充它組。

enter image description here

我已經更新SSDT並重新啓動。

回答

6

的問題是與目標服務器版本在項目屬性。 Visual Studio 2015的新安裝默認爲vNext。切換到SQL Server 2012導致配置顯示。

enter image description here

enter image description here

0

你有一個問題是你的視覺工作室。 (以下ADO枚舉的從我的電腦截圖,使用的Visual Studio 2015年)

enter image description here

  • 嘗試在安全模式下運行Visual Studio因此,如果這是由一個引起附加它將被固定。剛剛運行此命令

    devenv.exe /safemode 
    
  • 如果工作不嘗試修復您的SQL Server數據工具安裝或下載Latest release

+1

謝謝哈迪,安全模式被拋出一些新的和有趣的錯誤,我會去看看,你張貼的鏈接是同一個在我的問題。 –

+0

@TimPeters等待你的回覆 – Hadi

+0

無論是/ safemode還是我發佈到SSDT的鏈接都沒有解決問題。我也嘗試卸載/重新安裝Visual Studio 2015,並得到相同的結果。奇怪的是,當我從https://code.msdn.microsoft.com/Execute-SQL-Task-and-4aaea562下載一個項目,並在VS2015中打開它時,如果我切換到ForEach ADO,我可以看到Enumerator Configuration。 –