Wednesday, March 11, 2015

DIFFERENCES BETWEEN 2005 AND 2008 AND 2008 R2 AND 2012.

Differences between 2005 and 2008 and 2008 R2 and 2012.

SQL Server 2005 to 2008

• Transparent Data Encryption. The ability   to encrypt an entire database.
• Backup compression is available (only in Enterprise Edition)
• Backup Encryption. Executed at backup time to prevent tampering.
• Auditing. Monitoring of data access.
• Data Compression. Fact Table size reduction and improved performance.
• Resource Governor. Restrict users or groups from consuming high levels or resources.
• Hot Plug CPU. Add CPUs on the fly.
• Installation improvements. Disk images and service pack uninstall options.
• Dates and Times. New data types: Date, Time, Date Time Offset.
• File Stream. New data type VarBinary (Max) File Stream for managing binary data.
• Spatial Data. Data type for storing Latitude, Longitude, and GPS entries.
• Full Text Search. Native Indexes, thesaurus as metadata, and backup ability.
• SQL Server Integration Service. Improved   multiprocessor support and faster lookups.

SQL Server 2008 to SQL Server R2

• Backup compression is available in R2 standard (was only in Enterprise)
• SQL Server 2008 R2 Express Edition database size limit increased to 10 GB (from 4GB)

SQL Server 2008R2 to 2012

• Always On technology – allowing automatic replication and switching to mirrored database/server in the event of problems
• In most instances, the performance is 10 times faster than the predecessor (Microsoft claim)
• Buffer rate is high in SQL Server 2012 because of data compression.
• Data visualization tool is available in SQL Server 2012.This allows snapshots of data.
• Allows for warm Service Patch patching – meaning SQL or server does not have to be rebooted/restarted to apply patches
• New ‘Contained Databases’ feature allowing easier movement of database instances between servers
• New ‘ColumnStore’ indexes – which turn indexes 90 degrees in use (instead of one index per row, you get multiple column indexes per row which has a major impact on performance)
• Redesign of SQL Server management studio – providing new features, better intellisense, new viewing tools and cleaner interface
• Custom user server roles – meaning you can define roles with specific access (such as BI data reader) and assign these custom roles to defined users (therefore faster user maintenance)



No comments:

Post a Comment

COMMON SQL SERVER BACKUP FAILURE ERRORS AND ISSUES

  One of the most common task for a DBA’s are to perform installation of new SQL Server versions and installing patches. Most often or not e...