I investigated this problem and found an essential logic of the top command.
The top command refer to the shell variable of COLUMNS and it regulate the column chars of output. So I adjusted COLUMNS value and I got whole columns successfully in a redirected file.
If you excuse redirection of the top command in batch mode, you should do the following before excuse the top command.
*/10 * * * * export COLUMNS=n;top -b -n 1 >......