943,999 Members | Top Members by Rank

Ad:
  • MS SQL Discussion Thread
  • Marked Solved
  • Views: 10721
  • MS SQL RSS
Apr 3rd, 2007
0

need help on replacing a value in a field (MSSQL)

Expand Post »
Hi,

I have a table in which there is a field for mobile no. Currently the data in the field has been entered with a dash(-) after the code.

eg-

MobileNo (this is the field name)
-------------------------------------
1. 6016-2880537
2. 6012-3137200

so there is about 400 records in the table now. How possible is it for me to replace the delimeter (-) with '' or to remove the dash from the column mobileno with a single query. I know i can go remove the dash manually in enterprise manager,but it's time consuming.

Pls help..any help is greatly appreciated.

Thanks in advanced.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
newMeg is offline Offline
21 posts
since Jul 2006
Apr 3rd, 2007
0

Re: need help on replacing a value in a field (MSSQL)

MS SQL Syntax (Toggle Plain Text)
  1. UPDATE <tablename> SET MobileNo = REPLACE(MobileNo, '-', '')

You don't mention the name of the table so replace <tablename> with the name of your table (minus the chevrons obviously)

I ALWAYS backup my database before these kind of large update operations. In this simple case instead of a full backup you could add a new column to the table first, call it MobileNo_OLD or something, give it the same datatype as MobileNo and then first do:

MS SQL Syntax (Toggle Plain Text)
  1. UPDATE <tablename> SET MobileNo_OLD = MobileNo

Now you can always undo your update if you stuff it up, or someone (they always do) changes their mind.

Another tip is to do:

MS SQL Syntax (Toggle Plain Text)
  1. SELECT top 100 REPLACE(MobileNo, '-', '') AS [New MobileNo] FROM <tablename>

To see what the result of your update will look like before you actually commit to an update statement. (I put the 'top 100' in coz I dunno how massive your table might be in number of records, if you have only few hundred you can take that out) Yes you do you said it has 400 numbers! I'm so slow sometimes!
Last edited by hollystyles; Apr 3rd, 2007 at 7:47 am.
Reputation Points: 262
Solved Threads: 68
Veteran Poster
hollystyles is offline Offline
1,181 posts
since Feb 2005
Apr 11th, 2007
0

Re: need help on replacing a value in a field (MSSQL)

Hi hollystyles ,

you are always a great help. sorry for the late reply.the query example u said works great and solved my problem.

thanks again and sorry for th elate response.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
newMeg is offline Offline
21 posts
since Jul 2006
Apr 11th, 2007
0

Re: need help on replacing a value in a field (MSSQL)

Hey no problem glad I could help.
Reputation Points: 262
Solved Threads: 68
Veteran Poster
hollystyles is offline Offline
1,181 posts
since Feb 2005
Aug 4th, 2009
0

Re: need help on replacing a value in a field (MSSQL)

Hey Hollystyles ¡Thx! You Rocks!
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Josware is offline Offline
1 posts
since May 2007

This thread is solved

Either the thread starter or a moderator has marked this thread as solved. You can most likely trust the responses and answers given. There is most likely no reason for any further responses to be posted here. If you have a related question, please start a new thread in this forum instead.

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in MS SQL Forum Timeline: Analysis Service SQL Server 2005 Help Please
Next Thread in MS SQL Forum Timeline: How to add an index column whose values you can retrieve





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC