While creating a table, by mistake you have given size of one
field as 10. But as per requirement size should be 8. What is
your next step?

Answers were Sorted based on User's Feedback



While creating a table, by mistake you have given size of one field as 10. But as per requirement ..

Answer / hameed shaik

In Db29 we can alter the column size but cannot delete the column..
I did it so many times.. ALTER TABLE Tablename ALTER COLUMN columnname SET DATA TYPE VARCHAR(51)

Is This Answer Correct ?    7 Yes 0 No

While creating a table, by mistake you have given size of one field as 10. But as per requirement ..

Answer / mr.perfect

IF field is having empty in table , then we can reduce or
increase the size of the field, using the alter statement .
i.e . alter table <tablename>
modify <new columnname ><data type><new size>
if the data in the table is non-empyt, then we cannot alter
the table. better to delete the column and add the same
column to new size.

Is This Answer Correct ?    4 Yes 3 No

While creating a table, by mistake you have given size of one field as 10. But as per requirement ..

Answer / naidu sekhar yandrapu

once enter into column length ,we can increase the data length if a table is empty but if the table is non empty we can only
increase the(data length)

in this situation add one more column should be size is 8.

Is This Answer Correct ?    5 Yes 6 No

While creating a table, by mistake you have given size of one field as 10. But as per requirement ..

Answer / rahul

If table is empty then we alter this column to any length,
but if some data got inserted into the table then we can
also decrease the column length upto largest data size
available in that perticulat column.

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More DB2 Interview Questions

what is the total syntax for fetch ? can any one please give me all the details of fetch ? thx

2 Answers   IBM,


How does coalesce work?

0 Answers  


Explain about cursor stability?

0 Answers  


How would you move a tablespace (using STOGROUP) to a different DASD volume allocated to that tablespace?

1 Answers  


what is SPUFI ?

2 Answers  






What are the contents of a DCLGEN?

4 Answers   MetLife,


how to take the back up of the DB2 table.

7 Answers  


What is db2 bind?

0 Answers  


What is the use of db2 optimizer?

0 Answers  


How do I delete a table in db2?

0 Answers  


i have one file having 100 of records? i want to display it like 20 records in one column and 20 records in another column total 40 records per page ? how ?

2 Answers   EDS,


Mention the location where the output received from explain statement is stored.

0 Answers  


Categories