0

i have base64 string (pdf) and want to insert that into oracle blob in node js. Tried with Creating a buffer from the base64 string and encoded the buffer as a utf8 string, but received below error. Please let me know the solution.

Error: ORA-00972: identifier is too long

Christopher Jones
  • 9,449
  • 3
  • 24
  • 48

1 Answers1

1

No, prior to Oracle version 12.2, identifiers are not allowed to exceed 30 characters in length. See the Oracle SQL Language Reference.

ORA-00972 identifier is too long alias column name

Antier Solutions
  • 1,326
  • 7
  • 10