Create table emp
(id number(9), name varchar2(20),salary
number(9,2));
The table has 100 records after table created.Now i nee to
change id's Datatype is to be Varchar2(15). now
Alter table emp modify(id varchar2(15),name varchar2(20),
salary number(9,2));
Whether it will work or returns error? post answer with
explanation.
Answer Posted / subbarayulu
It Will not work properly. when ever the table with data
user can't chage the column's datatype. It allows to
increase the size of the data type only.
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
What is the use of prepared statement?
How to raise user-defined exception with custom sqlerrm ?
How do I run sql?
What are sql constraints?
What is raid? How does it help storage of databases?
What is sql*loader and what is it used for?
difference between anonymous blocks and sub-programs.
how to rename an existing table in mysql? : Sql dba
What is field delimiter?
What is audit logout in sql profiler?
What are the types of keys?
What is a sql trace file?
Why we use sql profiler?
What is synchronized subquery?