Reputation: 82437
I see several examples that show how to use the Execute SQL task. One such example I see this screen shot:
There are a lot of tasks there that I don't have in my task list. The one I am looking for is "Execute SQL".
I also note that they don't have "OLE DB Command" (which is what I would usually use to call SQL).
Do I just have a different version? Is "OLE DB Command" the successor to "Execute SQL"? Or is there some way to get the stuff I am missing?
Upvotes: 8
Views: 22824
Reputation: 1
I had this in VS 2022 and the reason was, Deployment Target Server Version was set to 2017.
The minute I changed it to 2022, I got all the items in the toolbox.
Right Click SSIS Project -> Properties -> Configuration Properties -> General
Upvotes: 0
Reputation: 7155
I had this issue in VS 2010 and VS 2012. To fix it, here's what I had to do:
Similar problem here: http://geekswithblogs.net/AskPaula/archive/2013/07/11/153385.aspx
Upvotes: 0
Reputation: 2901
In SQL 2012 / VS 2010, the Execute SQL Task
only appears in the Favorites
bar at the top. This is confusing - why is it only a favourite?
You can however right-click and "move" to Common
, but not "copy" to Common
:
Upvotes: 6
Reputation: 48024
You might be inside a Data Flow - that will only show you items related to a Data Flow (Data Flow Sources, Data Flow Transformations, Data Flow Destinations).
If you are in the Control Flow, and cannot see the items you indicate as missing, you can right click to add.
This will give you a dialog box where you can choose the items that you want to add
Upvotes: 8