vote up 3 vote down star

I need to check if a string contains a valid Oracle table name using sql/plsql. The criteria I found for a Oracle table name are these:

  1. The table name must begin with a letter.
  2. The table name can not be longer than 30 characters.
  3. The table name must be made up of alphanumeric characters or the following special characters: $, _, and #.
  4. The table name can not be a reserved word.

Criteria 1,2,3 don't seem so hard to tackle. But what about point 4? What are my options without trying to actually create a table with the given name and then see if it succeeds or fails.

flag
1  
The rules are a little more complicated than rules 1-3, you can have nearly any string for a table as long as it is enclosed by double quotes (you can create a table with non-ASCII characters). You should use dbms_assert as suggested by Jim Hudson in place of rules 1-3 (in addition to check for reserved words). – Vincent Malgrat Aug 21 at 14:36

4 Answers

vote up 5 vote down check

Oracle has a built-in that's useful for checking whether a SQL Name is valid. That's especially useful when building dynamic queries where you need to prevent SQL Injection.

Check out the dbms_assert.simple_sql_name built-in, and see the Oracle white paper at How to Write Injection Proof PL/SQL for more details.

v$reserved_words is also useful, as others have noted.

link|flag
1  
+1 For suggesting to use a builtin. Note that dbms_assert is only available in Oracle11. – Rob van Wijk Aug 21 at 14:51
Hi Rob, apparently the package was backported to all versions of Oracle (down to 8.1.7.4) in a patch in 2005 (to deal with SQL injection threats). It is definetely available on a new 10gR2 instance while at the same time absent from the 10gr2 doc. Cheers. – Vincent Malgrat Aug 21 at 15:21
vote up 0 vote down

It is a fairly large list to check. Can you simply add a default prefix to the tables and avoid these problems all together? user_xxx

link|flag
vote up 4 vote down

For SQL reserved words you can check v$reserved_words. Here the link from the documentation

link|flag
Sucks that in Oracle 9i this view contains only KEYWORD and LENGTH. – jva Aug 21 at 14:00
vote up 0 vote down

I have a SQL_RESERVED_WORDS table that I check against.

EDIT:

(I lied... it was just a SYNONYMN for the table in carpenteri's post)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.