SQL Server - is it possible to execute a stored procedure

I have a stored procedure executed from an ASP.NET application. Can I connect to a procedure and execute it through SQL Server 2005?

Please note that in this case I am not using the DataAdapter. I'm going blindly. The connection string is created on the fly, so I do not have access to the schema from the Visual Studio 2005 constructor.

I was hoping for a solution similar, for example, to how you join a process on a remote server and when you hit a breakpoint, the debugger starts.

+5
source share
4 answers

, ASP.NET(.. .NET ), , .

SQLTeam.com, , .

+5

You can also use SQL Profiler to find out what happens behind the scenes.

0
source

All Articles