I have notice that when I pull data out of my table there is extra white space after the normal text. (I.E. I input "Text" and when it is pulled out it is "Text ") I know in my ASP and Perl scripts I can remove the extra white space but is there a way to simply prevent the extra white space from appearing in MS SQL 2k?Table design code:CREATE TABLE [real_info] ( [uid] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [age] [numeric](3, 0) NOT NULL CONSTRAINT [DF_real_info_age] DEFAULT ((-1)), [real_name] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [city] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_real_info_city] DEFAULT ('Unkown'), [country] [char] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_real_info_country] DEFAULT ('Unkown'), [sex] [char] (7) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_real_info_sex] DEFAULT ('Unknown'), CONSTRAINT [PK_real_info] PRIMARY KEY CLUSTERED ( [uid] ) ON [PRIMARY] ) ON [PRIMARY]Note: This creation code is generated by SQL Query Analizer and not me so do not take it as a mesorment of my SQL programing abilities. I still do most things in Enterprize Maniger.-- If I get used to enving others...Those things about my self I pride will slowly fade away.-Stellvia