June 2, 2008 at 6:13 am
Dear Sir,
Plz help me the above topic
June 2, 2008 at 6:20 am
select @@version
June 2, 2008 at 6:57 am
Also, check BOL for the item Serverproperty
Wilfred
The best things in life are the simple things
June 2, 2008 at 7:02 am
Select serverproperty('productversion') will also provide you the desired result. Refer this link for more info,
http://support.microsoft.com/kb/321185
[font="Verdana"]- Deepak[/font]
June 2, 2008 at 7:43 am
Select @@version will give you the server version. Server propery is the next thing.
MCP, MCTS (GDBA/EDA)
June 3, 2008 at 1:08 am
Hi friend,
For this use select @@version .
June 3, 2008 at 1:55 am
SELECT @@VERSION will give you all the details of the version and the name of the product you are using......to know other you can use Select serverproperty( ).......checkout the property names available from Books On Line......Best of luck.......
Chandrachurh Ghosh
DBA – MS SQL Server
Ericsson India Global Services Limited
Quality is not an act, it is a habit.
June 3, 2008 at 2:18 am
you could also execute below xp
exec xp_msver
M&M
June 3, 2008 at 2:22 am
Or look at the values in the brackets next to the server name in SSMS Object Explorer
June 3, 2008 at 8:07 am
So, Deat friend, All the things to check the MS version. Try one or the other and get the version.
MCP, MCTS (GDBA/EDA)
June 3, 2008 at 11:39 pm
select @@version
will tell you the full software version and its name
June 4, 2008 at 12:55 am
USe
SELECT @@VERSION AS 'SQL Server Version'
and
xp_msver
it returns information about the actual build number of the server and information about the server environment.
Thanks
June 4, 2008 at 7:14 am
Why everyone is giving the same answer? If answer is already posted Please DO NOT GIVE THE SAME ANSWERS.
MCP, MCTS (GDBA/EDA)
June 4, 2008 at 7:35 am
didn't you give the same answer as Rajan John after him? 🙂
but i do agree..
Viewing 14 posts - 1 through 13 (of 13 total)
You must be logged in to reply to this topic. Login to reply