Try this:
convert(char(8), getdate(), 1)
what that does is: gets the system date (today's date) converts it to mm/dd/yy hh:mm:ss format; then returns only the first 8 characters (mm/dd/yy).
To test it, just add SELECT in front. Then you can replace the getdate() function with your column name, a variable, whatever has a datetime type.
By the way, in the future please start your own thread. Why? The person who creates the thread usually 'marks' the thread for email notification so they know when someone responds. Look at the beginning of this thread on the right side, there's a spot marked "Who's marked this thread?" Now the original poster is getting all these email notifications when none of them are responses to his/her post. So, this is a courtesy type of request.
-SQLBill