Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 Business Intelligence SSIS packages missing

I have Visual Studio 2012 solution with multiple BI projects. One of the SSIS projects do not show all the ssis packages in the Solution Explorer (checked in by another teammember). But the missing files are in the TFS (Source Control Explorer) and are visible in the physical folder.

I tried "Show all files" did not work. I tried adding the file again but the project does not allow that saying "file with same name exists".

Any idea what is going on here

like image 707
Arun K Avatar asked Jan 29 '14 23:01

Arun K


People also ask

How do I open SSIS Toolbox in Visual Studio 2012?

If you can't see the toolbox, go to VIEW -> Other Windows -> SSIS Toolbox.

How do I create a SSIS package in SQL Server Management Studio 2012?

In SQL Server Data Tools (SSDT), open the Integration Services project in which you want to create a package. In Solution Explorer, right-click the SSIS Packages folder, and then click New SSIS Package. Optionally, add control flow, data flow tasks, and event handlers to the package.

How do I open SSIS package in Business Intelligence Development Studio?

Open SQL Server Data Tools (SSDT). On the File menu, point to New, and then click Project. In the New Project dialog box, select Business Intelligence, and then select the Integration Services Project template.


1 Answers

The authoritative source of what's in a project is going to be the ProjectName.dtproj file.

Inside of that will be entries for the packages that comprise the project. For a non-package deployment model, it's trivial to edit the file by hand and make your stuff show up.

It's way too much effort to do that by hand for a 2012+ project deployment model. Open the Project in Visual Studio (ssdt/bids) and right click on the project. Click Add Existing Item (not add package) and then click the "missing" package. Check your .dtproj file in and all is right with the world.

like image 72
billinkc Avatar answered Nov 16 '22 01:11

billinkc