Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
maheedhar
Starting Member
2 Posts |
Posted - 2012-02-21 : 00:31:30
|
Hi All, I am getting one problem in sql server. I have sql server out with data. but data is moving from character to another column.Here i have queryDataFirst Name LastNameMaheedhar venkataJohn Abrahamhere the problemFirst Name(Column1) LastName(Column2)Maheedha rvenkataJoh nAbrahamfrom Firstname data one character is moving to another column lastname.This is the problem i am getting. Pls suggest solution for me.Thanks in AdvanceMaheedhar |
|
sunitabeck
Master Smack Fu Yak Hacker
5155 Posts |
Posted - 2012-02-21 : 06:57:47
|
This could be an artifact of the way you are querying or it could be that the data indeed got messed up somehow. Just select only first name or only last name and see if you get the right data. SELECT FIRSTNAME FROM YOUR TABLE; If that seems ok, the problem is in the way your are presenting the data. If even that seems incorrect, then somehow your data got corrupted. |
 |
|
|
|
|