4 Easy Ways To Fix ORA-01722 Invalid Number Error
Using Oracle database is very common but sometimes due to some uncertain reasons, you may get ORA-01722 invalid number error. Do you want to know what is ORA-01722 invalid number error and how to resolve ora-01722 invalid number error? If you want to know so then I must say that you have come to the right place. I am saying so because here I am going to mention some best ways to fix ORA-01722 error in Oracle.
Now, let’s get started with the introduction of this error, causes and then the ways to fix ora-01722 invalid number error and so on…..
What Is ORA_01722 Invalid Number Error?
ORA-01722 invalid number error is actually a fairly typical error in Oracle database. It is an invalid number error that occurs during a failure when you convert a character string to a valid number. It is an error that occurs due to arithmetic operation in the statement failed to calculate just because a single operand cannot be implicitly converted to a valid number. This error can take place due to several reasons which are further mentioned in this blog, so do not skip going through this blog.
Causes Of Occurring ORA-01722 Invalid Number Error
Several causes are that can lead you to face ORA-01722 invalid number error. However, some of the major causes are as follows:
Cause #1: Error During String Concatenation
If you use a plus (add) sign then it cannot concatenate strings. So, if you are using a wrong sign to concatenate two strings then you can get ORA-01722 invalid number error. Below is the code you might have tried to concatenate two strings:
SQL> set heading off; SQL> select ‘Today is ‘ + sysdate from dual; select ‘Today is ‘ + sysdate from dual * ERROR at line 1:
ORA-01722: invalid number
Here, SQL parser thought the statement tried to make arithmetic operation, however, it failed to continue. The right ways to concatenate two strings are as follows:
SQL> select ‘Today is ‘ || sysdate from dual;
Today is 26-DEC-19
The output of this code is perfect in concatenating two strings.
Cause #2: Error During Type Conversion
When you create a simple table that contains only one column with NUMBER type with the below code:
SQL> create table salaries (salary number);
Table created.
If you try to insert a row into the table that contains NUMBER column, you may get ORA_01722 error with the below code:
SQL> insert into salaries (salary) values (‘200,000’); insert into salaries (salary) values (‘200,000’) * ERROR at line 1:
ORA-01722: invalid number
You may get this error because the value ‘200,000’ of column SALARY can’t be converted into a valid number. You can make it easier by just removing the comma separator:
SQL> insert into salaries (salary) values (‘200000’);
1 row created.
How To Fix ORA-01722 Invalid Number Error?
When it comes to fixing ORA_01722 invalid number error, you can try several ways but the best options you can try are further mentioned here. All these solutions are very easy to try and are the most effective and working ways:
Fix #1: Insert Or Update Using a Subquery
If you are inserting or updating values in a table by using a subquery then you can get this error. This error can be quite difficult to detect because you are not explicitly stating the values to be inserted. You get this error because sometimes even one of the values found in the subquery is trying to be inserted into some numeric column. Also, the value is not a number.
Well, to find the major causes of this error, you can try running the subquery by itself and you can add a WHERE condition as mentioned below:
WHERE UPPER(column) != LOWER(column)
Here, you can replace the column with the column you found has the bad data. Here, the UPPER and the LOWER functions will return the different values from character strings and then you will be left with the rows that have strings values.
If you want to dig further then you can follow the below steps:
- You can run the subquery by itself to check the results.
- You can look at the values in the column you are expecting to be numeric to identify any that look like the same characters.
- You can also perform a TO_NUMBER on the columns to find the error.
- Also, you can get a DISTINCT list of each column in the subquery and then you can perform a TO_NUMBER.
- Apart from this, you can use a WHERE clause to restrict the results of the subquery and so you are just looking at a small data set at a time.
After you found the value that causes this error, you can either update the bad data or you can update the query to properly handle this data.
Fix #2: Mismatch Of Data Types In An Insert Query
If you are trying to INSERT data into a table with the use of INSERT INTO VALUES?
If yes then you can check that the columns are aligned to the values you want. It means that you have to make sure that the position of the columns that used to contain numbers that you are trying to insert.
The below query will then produce ORA-01722 invalid number error:
INSERT INTO student_results (student_id, subject_name, score, comments)
VALUES (1, ‘Science’, ‘Pretty good’, 95);
After this query, you will get the columns around the wrong way and in order to correct the query, you have to move the score value of 95 to in between the comments and the subject name.
INSERT INTO student_results (student_id, subject_name, score, comments)
VALUES (1, ‘Science’, 95, ‘Pretty good’);
Fix#3: Convert Implicitly In a Select Statement
If you are getting the error ‘ora-01722 invalid number’ when you are running a SELECT statement there would be two possible reasons:
- Invalid format mask while using TO_NUMBER
- Convert implicitly in WHERE clause
In some cases, this error takes place due to implicit conversion in a WHERE clause. An implicit conversion is where a value is being converted by Oracle but you do not specify it.
However, in order to fix this issue, you have to check for a numeric column that is being compared to a character column. As for example:
SELECT …
WHERE number_col = varchar_col;
This code insertion will result in an implicit conversion of the VARCHAR column to a number which may also cause the invalid number error.
However, if you are using the TO_NUMBER function in the query, you have to make sure that the format mask includes acceptable characters.
Fix #4: Some Common Possible Fixes
Apart from the above fixes, you can try these other possible ways to fix ORA-01722 invalid number error. Here are the other possible fixes you can try:
- The database formats for numbers are mismatched between these two databases. As for example, European numeric data uses 12.345,67 where US format is 12,345.67. You can review the NLS_LANG settings to make sure that it is not causing any problem.
- Fields that used to contain spaces cannot be easily converted, so it is important to make sure that you TRIM this data. After that, you convert it to NULL or also can convert it to ZERO.
- It is possible that a function-based index is causing ORA_01722 invalid number error. You can review the table to see if there are any function-based indexes that could be converting the data.
Ultimate Solution: Oracle File Repair Tool To Fix ORA-01722 Invalid Number Error
Even after trying all the above ways, you are still unable to resolve ora-01722 invalid number then you can try Oracle File Repair Tool. This tool has the best features that can definitely let you know how to resolve ora-01722 invalid number error? You can just try this tool and fix ora-01722 invalid number error due to its great features. All you have to do is to download and install Oracle File Repair Tool to fix ora-01722 invalid number error.
Below, you will get the step by step guide to know how to resolve ora-01722 invalid number error with this best-featured tool.
Steps To Fix ORA-01722 Invalid Number Error
Step 1: Search the Initial screen of Stellar Phoenix Oracle Repair & Recovery with a pop-up window showing options to select or search corrupt Oracle databases on your computer.
Step 2: Click Scan File to initiate the scan process after selecting the oracle database. The recoverable database objects get listed in left-side pane.
Step 3: Click an object to see its preview.
Step 4: : Click Start Repair in the icon bar to start the repair process. A pop-up window is displayed which show the steps needed to perform further. Click next and continue.
Step 5: Give the user name, password and path of the blank database where you want to save the repaired database objects. Step 6: Repairing and restoring various database objects after establishing a connection with blank oracle database.
While using Oracle database, if you ever come across an error stated as ‘ORA-01722 Invalid Number’ then you should try these ways mentioned above. I have tried my best to provide you the working and the effective solution I can. However, if manual ways do not work in your case, then you can also try Oracle File Repair Tool. This tool has the capability to fix any kind of error related to Oracle database. So, know how to resolve ora-01722 invalid number error in Oracle database and recover the database easily in no time.
Jacob Martin is a technology enthusiast having experience of more than 4 years with great interest in database administration. He is expertise in related subjects like SQL database, Access, Oracle & others. Jacob has Master of Science (M.S) degree from the University of Dallas. He loves to write and provide solutions to people on database repair. Apart from this, he also loves to visit different countries in free time.