Debugging stored procedures with '.' in the name

  • Thread starter Thread starter Pedja
  • Start date Start date
P

Pedja

Hi.
I have some problems debugging stored procedure that have '.' (dot) in
the name. If I choose to step into such a procedure, Visual Studio
stops responding before showing me the dialog with the parameters.
Is there any workaround?
Thanks.
- Pedja.
 
Try putting the SP name between sqare brackets (because the points are
normally to split databasename.owner.objectname):

[sp.with.dot]

--


HTH

Éric Moreau, MCT, MCSD
Conseiller principal / Senior consultant
Concept S2i inc. (www.s2i.com)
 
Hi Eric.
That's not the problem, Visual Studio puts the square brackets
automatically as soon as it opens stored procedure inside IDE.
Thanks anyway.
- Pedja.
 
Back
Top