Alex Gordon
Alex Gordon

Reputation: 60691

SQL Server 2008 data types: which ones should i use?

I am trying to figure out which data types I should use for my tables. Does someone have a very good, simple, tutorial on SQL Server 2008 datatypes (has to be practical!) ?

Upvotes: 3

Views: 186

Answers (3)

I think the best way of choosing the type is self knowledge about project mixed with the knowledge of available types that why i advise You to get familiar with Data types in MS-SQL and generally with MSDN

Upvotes: 0

Kamyar
Kamyar

Reputation: 18797

http://www.databasejournal.com/features/mssql/article.php/3788256/Data-Types-in-SQL-Server-2008.htm
http://searchsqlserver.techtarget.com/feature/SQL-Server-2008-data-types-Datetime-string-user-defined-and-more
The first link is more practical. As far as I know, SQL Server 2005 and 2008 almost have the same data types. (except new DateTime data type).

Upvotes: 1

Carvellis
Carvellis

Reputation: 4042

Here is a nice post.

Upvotes: 2

Related Questions