1

With a test migration from 2000 to 2008R2 Express, one function from the client application fails silently. I'd like to find out what SQL is running and why it fails.

I think I would have attacked this with the profiler in 2000 (not sure)? However this tool is absent from the Express Edition.

Is it possible to do what I want without any tool, eg just with T-SQL, and how would I go about it?

Jack Douglas
  • 40,517
  • 16
  • 106
  • 178

2 Answers2

3

You'll need a profiler of some variety if the call is wrapped up.

One of:

gbn
  • 70,237
  • 8
  • 167
  • 244
3

I believe that in SQL Server Express, just because you don't have the SQL Server Profiler application you are still able to use the Trace objects.

Please reference this to show an explanation of all the stored procs and functions that you can and need to use: http://msdn.microsoft.com/en-us/library/ms191006.aspx

Thomas Stringer
  • 42,434
  • 9
  • 120
  • 155