I was engaged in a cross product readiness program and now doing some researches on Sharepoint. If you are a experienced IIS engineer, you'll find SPS is very internesting as it really makes life easier and some other cool stuff. For instance, you access http://server/default.aspx and you use process monitor to monitor the file access operations. You'll see NTFS actually returns FILE NOT FOUND whilst the page can be rendered successfully. I will dig further into managed URL path and share with you guys in greater detail in the later articles. Today, I just want to answer one single question, where does WSS 3.0 store contents? Here is something I got from internal sites:
The Windows Internal Database is a special variant of Microsoft SQL Server 2005 Express. It is included with Windows Server 2008, Windows Server Update Services (WSUS), Windows SharePoint Services (WSS) and other Windows Server tools. It is also referenced as SQL Server 2005 Embedded Edition (SSEE).
The Windows Internal Database is used by Active Directory, WSS, WSUS and other Windows Server services as their data storage. Some of its main characteristics are:
- It cannot be used as a regular SQL Server instance as it is intended to be only used by Windows Services/Programs.
- It cannot be removed by using the "Add or Remove Programs" tool because it does not appear in the list of currently installed programs. Note that it is not recommended to uninstall SSEE as it might affect the operation of Windows Services that use it.
- It only supports Windows Authentication.
- You can only connect to the instance using Named Pipes.
Fist of all you will need to install SQL Server 2005 Express Edition Management Studio.
Then you will need to use the following connection properties:
- Server Type: Database Engine
- Server Name: //./pipe/MSSQL$MICROSOFT##SSEE/sql/query
- Authentication: Windows Authentication