DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Number or Charecter?

  1. #1
    Join Date
    Sep 2003
    Posts
    2

    Number or Charecter?

    Hi,

    I have a Varchar2 column for the telephone numbers.
    Sometimes we get the telephone numbers with charecters.
    Is there a way to find out those telephone numbers with charecters?
    The table contains 4 million rows.
    my oracle version is 8.1.7.4 running in Win2000 adv server.
    Thanks for your help
    Dan

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    select * from phone_numbers_table
    where translate(phone_number_column,'a0123456789','a') is not null;
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

  3. #3
    Join Date
    Sep 2003
    Posts
    2
    Thanks very much.
    It works great
    Dan

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width