Apr 15, 2006 #1 Aeros Programmer Oct 7, 2002 166 US What do you do when you need to store ALOT of text and need to go past the limits of a varchar with 8000 characters? Thanks
What do you do when you need to store ALOT of text and need to go past the limits of a varchar with 8000 characters? Thanks
Apr 15, 2006 1 #2 r937 Technical User Jun 30, 2002 8,847 CA i use TEXT r937.com | rudy.ca Upvote 0 Downvote
Apr 15, 2006 1 #3 mrdenny Programmer May 27, 2002 11,595 In SQL 7 or SQL 2000 you would use TEXT or NTEXT. In SQL 2005 you would use VARCHAR(MAX) or NVARCHAR(MAX). Denny MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com Upvote 0 Downvote
In SQL 7 or SQL 2000 you would use TEXT or NTEXT. In SQL 2005 you would use VARCHAR(MAX) or NVARCHAR(MAX). Denny MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com