Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is causing this??

Status
Not open for further replies.

buzzt

Programmer
Oct 17, 2002
171
CA
Somehow, I had a bunch of line breaks in one of the columns in my table which caused my table to look al staggered when viewing it. I managed to remove all the lines, but found I have a similar problem which I cannot identify. What would cause my table to look like this? With a lot of data to look at, it becomes a problem.

Like this
+-------------------+
|
|
+-------------------+

instead of this
+-------------------+
| |
| |
+-------------------+
 
Just a DOS window. The strange part is that it only happens to some of the entries. The entries that contained previously contained newlines (\n) also caused this.
 
It appears to be something with newlines, but when I remove them, it only partially fixes the problem.

Here is how I tried to remove them.

update TABLE set COLUMN=replace(COLUMN,'\n', '');

This fixes some of the problem. but not all.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top