Hi
_I use sql server 2005 and I want to execute mu store procedure like exec <procedure_Name> ' ',' ',' '
so for this I need query analyzer window but I can not find please help me
_also is there any check syntax box in sql server 2005? thanks
Hi
_I use sql server 2005 and I want to execute mu store procedure like exec <procedure_Name> ' ',' ',' '
so for this I need query analyzer window but I can not find please help me
_also is there any check syntax box in sql server 2005? thanks
In SQL Server 2005, Query Analyzer has been replaced with SQL Server Management Studio. There is a toolbar button for syntax checking.
AFAIK, in SQL Server 2005, the whole of Query Analyzer was rolled into Sql Server Management Studio (you can get the Express version for free, if you don't have a full license). Also, you can perform syntax checking simply by turning off execution in your T-SQL batch.
In SQL Management Studio click New Query
at the top left, or right-click your stored procedure and go Script Stored Procedure As -> EXECUTE To -> New Query Editor Window
.
You can check the syntax of a query (somewhat) by clicking the "Tick" on the toolbar (it is the Parse button). However, it is not completely accurate.