In this article, we will be discussing about the Windows Internal Database (SSEE), what it is and how you can access it via SQL Server Management Studio.
About the Windows Internal Database
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).
Characteristics of the Windows Internal Database
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 (more info here). 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.
How to Access the Windows Internal Database
In some cases where you might need to access this special instance of SQL Server (i.e. for reducing the transaction log size of a database) you must use the Named Pipes protocol for doing so. Named Pipes can be enabled from Network Configuration in SQL Server Configuration Manager.
First of all you will need to install SQL Server 2005 Express Edition Management Studio (link).
Then you will need to use the following connection properties:
- Server Type: Database Engine
- Server Name: \.pipeMSSQL$MICROSOFT##SSEEsqlquery
- Authentication: Windows Authentication
You have to be careful when accessing the Windows Internal Database as many Windows Services depend on it.
Strengthen your SQL Server Administration Skills – Enroll to our Online Course!
Check our online course on Udemy titled “Essential SQL Server Administration Tips”
(special limited-time discount included in link).Via the course, you will learn essential hands-on SQL Server Administration tips on SQL Server maintenance, security, performance, integration, error handling and more. Many live demonstrations and downloadable resources included!
Featured Online Courses:
- Introduction to Azure SQL Database for Beginners
- SQL Server 2019: What’s New – New and Enhanced Features
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Administration Tips
- Boost SQL Server Database Performance with In-Memory OLTP
- Essential SQL Server Development Tips for SQL Developers
- Working with Python on Windows and SQL Server Databases
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- Introduction to SQL Server Machine Learning Services
- Entity Framework: Getting Started – Complete Beginners Guide
- How to Import and Export Data in SQL Server Databases
- Learn How to Install and Start Using SQL Server in 30 Mins
- A Guide on How to Start and Monetize a Successful Blog
Read Also:
- The Importance of Database Indexes
- Where are temporary tables stored in SQL Server?
- SQL Server 2016: TempDB Enhancements
- tempdb growth
- …more
Subscribe to our newsletter and stay up to date!
Check out our latest software releases!
Check out Artemakis’s eBooks!
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou is a seasoned Senior Database and AI/Automation Architect with over 20 years of expertise in the IT industry. As a Certified Database, Cloud, and AI professional, he has been recognized as a thought leader, earning the prestigious Microsoft Data Platform MVP title for nine consecutive years (2009-2018). Driven by a passion for simplifying complex topics, Artemakis shares his expertise through articles, online courses, and speaking engagements. He empowers professionals around the globe to excel in Databases, Cloud, AI, Automation, and Software Development. Committed to innovation and education, Artemakis strives to make technology accessible and impactful for everyone.
This is a nice one.
Even so, any idea of what it can be used for? What are the limitations (if any)?
What I can think of at the moment is logging… maybe?
Anyway, thanks for the tip!
Hi Bojan,
Well, SSEE was designed to only be accessible to Windows Services running on the same machine.
I am not aware of any database size limitations to be honest. As an example when you install SSEE with WSS there are not any db size limitations. I guess any possible db size limitations depend with which Windows service you installed SSEE.
The limitations are:
(1) It cannot be removed by using the "Add or Remove Programs" tool because it does not appear in the list of currently installed programs.
(2) It only supports Windows Authentication.
(3) You can only connect to the instance using Named Pipes.
I would not recommend treating SSEE as a regular SQL Server Instance due to its nature. You can always use another SQL Server Edition/Instance for that!
Why the SSEE also used by AD, is incorrect description I think.
Hi Chill,
In Windows Server 2008, Active Directory Rights Management Services use Windows Internal Database for their data storage.
Thanks!.