WSS V3 and connections to it’s internal database

Posted by ptahiliani on Geeks with Blogs See other posts from Geeks with Blogs or by ptahiliani
Published on Tue, 18 May 2010 06:12:59 GMT Indexed on 2010/05/18 10:01 UTC
Read the original article Hit count: 215

Filed under:

Have you ever wanted to connect to the “Windows Internal” database that WSS V3 uses?

While “Windows Internal Database” is Microsoft SQL Server 2005 in a limited edition (just like MSDE, WMSDE before it), the familiar access tools to the DB went missing, and connecting using standard ways doesn’t work either.

It doesn’t work right out of the box. First, you need SQL Management Studio Express.

Install and start it. Specify the following connection string:

\\.\pipe\mssql$microsoft##ssee\sql\query

Please note that, as implied by the connection string, this connection only works locally. If you are looking for the connection string than here it is:

“Provider=Sqloledb;Data Source=\\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query;Database=SUSDB;Trusted_Connection=yes”

© Geeks with Blogs or respective owner