Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSIS - how can I see where a connection is used?

Tags:

ssis

Is there a quick way to determine where within a package a connection is used?

like image 684
adolf garlic Avatar asked Oct 05 '11 09:10

adolf garlic


People also ask

How do I find my SSIS Connection Manager?

Configure at design time.In SSIS Designer, double-click on your OLEDB connection manager to open the Connection Manager window. In the Provider drop-down list, select Microsoft OLEDB Driver for SQL Server.

What is Retainsameconnection property on connection in SSIS?

Retain Same Connection is a property setting found on connection managers. By default this property is set to false which means that each time the connection manager is used the connection is opened and subsequently closed.

What is the use of connection string in SSIS?

For example, a connection manager includes the ConnectionString property that you set at design time; at run time, a physical connection is created using the value in the connection string property. A package can use multiple instances of a connection manager type, and you can set the properties on each instance.

Where can I find Connection Manager?

To access the connection manager, go to https:// hostname : port /optim/admin/, where hostname and port are the host name and port of the application server. If you install the connection manager with WebSphere Application Server Community Edition, then the default port is 8443.


2 Answers

within visual studio you can search for all instances of the connection string with ctrl+shift+f

like image 144
Daryl Wenman-Bateson Avatar answered Oct 11 '22 04:10

Daryl Wenman-Bateson


I usual right click on the package and look through the XML code

like image 3
Kip Real Avatar answered Oct 11 '22 06:10

Kip Real