How to determine the service pack currently installed on
SQL Server?
Answers were Sorted based on User's Feedback
Answer / swapna
The global variable @@Version stores the build number of
the sqlservr.exe, which is used to determine the service
pack installed.
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / rahul
So many ways:
1.) right click on the server name and then click on
properties. From there you can see all the Server details
including sp.
2.) In Query Analyzer window type select @@version and
execute
3.) in Query Analyzer type xp_msver
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pavit
So many ways:
1.) right click on the server name and then click on
properties. From there you can see all the Server details
including sp.
2.) In Query Analyzer window type select @@version and
execute
3.) in Query Analyzer type xp_msver
4.) so so so so so so so
Is This Answer Correct ? | 1 Yes | 4 No |
What is trigger and different types of Triggers?
Lets say due to N/W or Security issues client is not able to connect to server or vice versa. How do you troubleshoot?
Can you type more than one query in the query editor screen at the same time?
Can we use Truncate command on a table which is referenced by FOREIGN KEY?
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
How to replace the Query Result 'Null Value' with a text ?
How to change server name in sql server?
What is the main difference between ‘between’ and ‘in’ condition operators?
Differentiate between truncate vs delete in mssql?
in my server i have 3 instances,one of them got failed, and this cause we r not able to connect to server, how to know which instance was dameged?
What is a Trace frag?Where can we use this?
Explain table valued parameters in sql server? Why tvp used?