Question: I am trying to insert these records into the sqlplus table, but it giving error message value too large for culume. How can i fix

I am trying to insert these records into the sqlplus table, but it giving error message value too large for culume. How can i fix the problem. Also how can i run the select statement.

thanks

create table item_desc (item_id varchar2(6), category_id varchar2(2), primary_desc varchar2(50), secondary_desc varchar2(50), color_desc varchar2(10), size_desc varchar2(10), status_code char(1), production_date DATE);

insert into store_information values('item_id','category_id','primary_desc','secondary_desc','color_desc','size_desc','status_code','production_date');

create table store_information (store_id varchar2(3), store_name varchar2(20), street_name varchar2(20), city varchar2(20), zip_code varchar2(5), phone_nbr varchar2(20), manager_name varchar2(30), open_sunday_flag char(1));

insert into store_information values('store_id','store_name','street_name','city','zip_code','phone_nbr','manager_name',open_sunday_flag);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!