Showing posts with label Sql Server 2008 new features. Show all posts
Showing posts with label Sql Server 2008 new features. Show all posts

Thursday, July 2, 2009

SQL SERVER 2008 NEW DATA TYPES

NEW DATA TYPES in SQL Server 2008

• Date and Time: Four new date and time data types have been added, making working with time much easier than it ever has in the past. They include: DATE, TIME, DATETIME2, and DATETIMEOFFSET.
• Spatial: Two new spatial data types have been added GEOMETRY and GEOGRAPHY which you can use to natively store and manipulate location-based information, such as Global Positioning System (GPS) data.
• HIERARCHYID: The HIERARCHYID data type is used to enable database applications to model hierarchical tree structures, such as the organization chart of a business.
• FILESTREAM: FILESTREAM is not a data type as such, but is a variation of the
VARBINARY(MAX) data type that allows unstructured data to be stored in the file system
instead of inside the SQL Server database. Because this option requires a lot of involvement
from both the DBA administration and development side.

…. Working on each data type practical, I will post with examples once I finished.