in

SQL Server Community Blogs

Voices of the SQL Server Community

Browse by Tags

  • Column length and Data length

    When you use character datatypes(char,varchar,nchar,etc), always make sure that column has enough length to have data. Otherwise sometimes you would get errors and sometimes you wont. Consider the following example Declare @t table ( i int , test_col varchar ( 2 )) Insert into @t select 1 , 'test' Select...
    Posted to Madhivanan (Weblog) by Madhivanan on 12-04-2007
Page 1 of 1 (1 items)
Powered by Community Server (Commercial Edition), by Telligent Systems