SQL Server Compact

From Wikipedia, the free encyclopedia

Microsoft SQL Server Compact (SQL CE) is a discontinued relational database produced by Microsoft for applications that run on mobile devices and desktops. Prior to the introduction of the desktop platform, it was known as SQL Server for Windows CE and SQL Server Mobile Edition.

It includes both 32-bit and 64-bit native support.[1] SQL CE targets occasionally connected applications and applications with an embedded database.[2] It is free to download and redistribute.[2] An ODBC driver for SQL CE does not exist, nor is one planned. Native applications may use SQL CE via OLE DB.

The latest, and last, release is the SQL Server Compact 4.0.[1] In February 2013 SQL Server Compact Edition had been deprecated; no new versions or updates are planned, although Microsoft continued to support the product until July 2021.[3]

Overview[edit]

SQL Server Compact shares a common API with the other Microsoft SQL Server editions.[4] It also includes ADO.NET providers for data access using ADO.NET APIs, and built-in synchronization capabilities,[2] as well as support for LINQ and Entity Framework. Future releases will unify the synchronization capabilities with Microsoft Synchronization Services.[needs update][5] Unlike other editions of Microsoft SQL Server, SQL CE runs in-process[5] with the application which is hosting it. It has a disk footprint of less than 2 MB and a memory footprint of approximately 5 MB.[2] SQL CE is optimized for an architecture where all applications share the same memory pool.[6] Windows Store apps for Windows 8 cannot use SQL Server Compact edition, or any other edition of SQL Server.[7]

Versions
Official Name Common Name Release date Support date
  • SQL Server 2000 Windows CE Edition
  • SQL Server CE 1.0
SQL CE 1.0 2000-10-26[8]
  • SQL Server 2000 Windows CE Edition 1.1
  • SQL Server CE 1.1
SQL CE 1.1 2001-03-21[9]
  • SQL Server 2000 Windows CE Edition 2.0
  • SQL Server CE 2.0
SQL CE 2.0 2002-09-16[10]
SQL Server 2005 Mobile Edition SQL CE 3.0 2006-01-14
SQL Server 2005 Compact Edition SQL CE 3.1 2007-02-19 Old version, no longer maintained: 2016-04-12[11]
SQL Server Compact 3.5 SQL CE 3.5 2008-02-19 Old version, no longer maintained: 2018-04-10[12]
SQL Server Compact 4.0 SQL CE 4.0 2011-04-13 Old version, no longer maintained: 2021-07-13[3]
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

Support[edit]

SQL CE databases can support ACID-compliance, but do not meet the durability requirement by default because AutoFlush buffers changes in memory (including enlisted ambient transactions and explicit SQL CE transactions that do not override the Commit() call with an CommitMode.Immediate value). Therefore, committed transaction changes can be lost. To meet the durability requirement the commit call on the transaction must specify the immediate flag.[13] Like Microsoft SQL Server, SQL CE supports transactions, referential integrity constraints, locking as well as multiple connections to the database store.[4] However, nested transactions are not supported, even though parallel transactions (on different tables) are.[14] The current release does not support stored procedures[4] or native XML data type either.[5] It uses a subset of T-SQL[2] for querying and due to lack of XML support, XQuery is not supported either.[5] Queries are processed by an optimizing query processor.[15] SQL CE databases also support indexing, as well as support remote data replication (local caching of data in remote databases) and merge replication (bidirectional synchronization with master databases).[16]

SQL CE databases can be created and managed from Microsoft Visual Studio and some older versions of SQL Server Management Studio as well.[15]

File format[edit]

SQL Server Compact
Filename extension
.sdf
Developed byMicrosoft
Type of formatRelational database

SQL CE databases reside in a single .sdf file,[17] which can be up to 4 GB in size.[4] The .sdf file can be encrypted with 128-bit encryption for data security.[17] SQL CE runtime mediates concurrent multi-user access to the .sdf file. The .sdf file can simply be copied to the destination system for deployment, or be deployed through ClickOnce. SQL CE runtime has support for DataDirectories.[6] Applications using an SQL CE database need not specify the entire path to an .sdf file in the ADO.NET connection string, rather it can be specified as |DataDirectory|\<database_name>.sdf, defining the data directory (where the .sdf database file resides) being defined in the assembly manifest for the application.[citation needed]

SQL Server Management Studio 2005 can read and modify CE 3.0 and 3.1 database files (with the latest service pack), but SQL Server Management Studio 2008 (or later) is required to read version 3.5 files. Microsoft Visual Studio Express 2008 SP1 can create, modify, and query CE 3.5 SP1 database files. SQL Server Management Studio cannot read CE 4.0 files. Visual Studio 2010 SP1 can handle CE 4.0 database files.[citation needed]

The .sdf ("Sqlce Database File") naming convention is optional, and any extension can be used.[citation needed]

Setting a password for the database file is optional. The database can be compressed and repaired with the option of the compacted/repaired database to be placed into a new database file.[citation needed]

Deprecation[edit]

In February 2013, Microsoft announced that SQL Server Compact Edition had been deprecated.[18]

Although no new versions or updates are planned, Microsoft will continue to support SQL Compact through their standard lifecycle support policy. Extended support for SQL Server Compact 4.0 ended on July 13, 2021.[19]

See also[edit]

References[edit]

  1. ^ a b "Microsoft SQL Server Compact 4.0 is available for download and use with WebMatrix". Retrieved 2020-03-11.
  2. ^ a b c d e "SQL Server 2005 Compact Edition Datasheet". Archived from the original on 2007-03-16. Retrieved 2007-07-03.
  3. ^ a b "Microsoft SQL Server Compact 4.0". Lifecycle. Microsoft Docs. Retrieved 2021-02-26.
  4. ^ a b c d "A Lap Around SQL Server 2005 Compact Edition". Retrieved 2005-07-03.
  5. ^ a b c d "SQL Server Everywhere: Just Another Database?". Retrieved 2007-07-03.
  6. ^ a b "What's New (SQL Server Compact Edition)". Retrieved 2007-07-03.
  7. ^ "How do i run SQL Server Compact 3.5 on Windows 8 developer preview?". social.msdn.microsoft.com. Retrieved 11 March 2013.
  8. ^ "Microsoft Launches SQL Server 2000 Windows CE Edition at PASS 2000". news.microsoft.com. 2000-10-26. Retrieved 2022-04-16.
  9. ^ "Microsoft Delivers Support for Embedded Devices With Release of SQL Server 2000 Windows CE Edition Version 1.1". news.microsoft.com. 2001-03-21. Retrieved 2022-04-16.
  10. ^ "Microsoft Delivers Next Stage of .NET Solution For Enterprise Mobile Development". news.microsoft.com. 2002-09-16. Retrieved 2022-04-16.
  11. ^ "Microsoft SQL Server 2005". Lifecycle. Microsoft Docs. Retrieved 2021-02-26.
  12. ^ "Microsoft SQL Server Compact 3.5". Lifecycle. Microsoft Docs. Retrieved 2021-02-26.
  13. ^ "Maintaining Databases (SQL Server Compact Edition)".
  14. ^ "Transactions (SQL Server Compact Edition)". Retrieved 2007-07-03.
  15. ^ a b "Overview of Databases (SQL Server Compact Edition)". Retrieved 2007-07-03.
  16. ^ "Overview of Databases (SQL Server Compact Edition)". Retrieved 2007-07-03.
  17. ^ a b "Data Storage Architecture with SQL Server 2005 Compact Edition". Retrieved 2007-07-03.
  18. ^ Barranis, Patrick (2013-01-11). "Port SQL Compact to Windows RT". Microsoft Connect. Retrieved 2016-06-25.
  19. ^ "Microsoft SQL Server Compact 4.0 Support Dates". Retrieved 2020-09-17.

External links[edit]