0

How to set blob limit while creating column in oracle? I am getting error with

Foo (1k)

http://docs.oracle.com/javadb/10.6.2.1/ref/rrefblob.html

1 Answer 1

1

You've posted a link to the documentation for Java DB. That's a completely different database engine that happens to be owned by Oracle Corp.

Within the Oracle database, you do not and can not specify a restriction on the length of a blob. You just declare a blob. Either

create table foo(
  blob_column blob
);

or

declare
  l_blob blob;
begin
  null;
end;
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.