Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Testing the web API services through sql profiler?

I need help testing web api through sql profiler.

I tested with chrome advanced rest client and fiddler but i need to test with profiler, so I can know which method is really slow and i can insert different things in that

For example, if there are three thing in a method I can test by inserting one at a time; I can't do the same thing with fiddler or rest client service.

Thanks for Helping.

like image 940
Syed Mudabbir Avatar asked Oct 03 '22 19:10

Syed Mudabbir


2 Answers

Wonderful question , i been searching for this and finally i found this link http://msdn.microsoft.com/en-us/magazine/cc163749.aspx It should help you out .One question , are you using locally or on the server.This matters for profiler

like image 178
Genius Avatar answered Oct 07 '22 19:10

Genius


Just do EXEC sp_proc name , for all those 3 in your ssms , you should be able to see all the slowness and everything

like image 30
user2661427 Avatar answered Oct 07 '22 17:10

user2661427