Click here to Skip to main content
15,917,964 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Friends,

What the purpose of Break Point in Sql,08

Regards,
AP
Posted
Comments
bbirajdar 21-May-12 6:33am    
Its used for debugging T-SQL code

Since Sql Server 2008, Transact SQL Debugger is incorporated with SQL Server Management Studio there by giving the privilege of debugging Transact SQL statements line by line, using breakpoints, step into, step over, step out from database programming objects(stored procedure, function, triggers etc.)
 
Share this answer
 
Comments
Prasad_Kulkarni 21-May-12 7:53am    
Good answer, My 5!
yaprig 21-May-12 9:10am    
thnx:)
In short:
In software development, a breakpoint is an intentional stopping or pausing place in a program, put in place for debugging purposes. It is also sometimes simply referred to as a pause.

The most common form of a breakpoint is the one where the program's execution is interrupted right before a programmer-specified instruction is executed. This is often referred to as an instruction breakpoint.

When a breakpoint is hit, various tools are used to inspect the state of the program or alter it.

Please refer similar discussion:
what are break points in sql server?[^]
 
Share this answer
 
Comments
VJ Reddy 21-May-12 6:44am    
Good reference. 5!
Prasad_Kulkarni 21-May-12 6:51am    
Thank you VJ!
Arunprasath Natarajan 21-May-12 7:50am    
Nice one, clear with it.
Prasad_Kulkarni 21-May-12 7:52am    
Glad it helps!
Thank you Arunprasath :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900