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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started