|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SQL Server 2005 ExpressHi Friends,
I have installed SQL server 2005 Express Ed. and management Studio Express. How Do i know if these are havibg SP1 Installed or not? I have the Database displayed as: MyHomePC\SQLExpress (SQL Server 9.0.2047 - as version info. Please guide Thanks Prabhat Haven't used 2005 express, but try querying the database using
SELECT SERVERPROPERTY('ProductLevel') ' this will give you the SP version for your SQL Server instance 'or for longer version output (might not display service pack info) SELECT @@VERSION Cheers, Johan Sjöström MSc, MCP, MCAD Prabhat wrote: Show quote > Hi Friends, > > I have installed SQL server 2005 Express Ed. and management Studio Express. > How Do i know if these are havibg SP1 Installed or not? > > I have the Database displayed as: MyHomePC\SQLExpress (SQL Server 9.0.2047 - > as version info. > > Please guide > > Thanks > Prabhat Hi Johan,
I executed SELECT SERVERPROPERTY('ProductLevel') and get result as "SP1" So it is having SP1 installed in it. Thanks Prabhat "Johan Sjöström" <daddyna***@hotmail.com> wrote in message Haven't used 2005 express, but try querying the database usingnews:1155222719.554854.177820@p79g2000cwp.googlegroups.com... SELECT SERVERPROPERTY('ProductLevel') ' this will give you the SP version for your SQL Server instance 'or for longer version output (might not display service pack info) SELECT @@VERSION Cheers, Johan Sjöström MSc, MCP, MCAD Prabhat (not_a_m***@hotmail.com) writes:
> I have installed SQL server 2005 Express Ed. and management Studio That's indeed SP1.> Express. How Do i know if these are havibg SP1 Installed or not? > > I have the Database displayed as: MyHomePC\SQLExpress (SQL Server > 9.0.2047 - as version info. -- Erland Sommarskog, SQL Server MVP, esq***@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
|||||||||||||||||||||||