Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


can we drop column from a table

Answers were Sorted based on User's Feedback



can we drop column from a table..

Answer / srini

We can not drop a column. If we want we can append colume
with ALTER command.

Is This Answer Correct ?    30 Yes 9 No

can we drop column from a table..

Answer / prem

It depends on DB2 version.
In DB2 V9 we can drop a column.
In DB2 V8 we cant.

Is This Answer Correct ?    12 Yes 3 No

can we drop column from a table..

Answer / kumar

It is not possible directly. Indirectly we could do it.
Create a view by eliminating the column (th one to be
deleted). Drop the table or create a new table. Copy from
the view to the newly created table. Pl correct if I'm
wrong.

Is This Answer Correct ?    7 Yes 3 No

can we drop column from a table..

Answer / anand

yes .. can be dropped..

Is This Answer Correct ?    2 Yes 8 No

can we drop column from a table..

Answer / rbs

yes we can drop, but column should not have any data.
eg: ALTER TABLE <TB NAME> DROP COLUMN Col-name.

Is This Answer Correct ?    3 Yes 10 No

can we drop column from a table..

Answer / zoheb ali ahmed

Drops only take place at, minimum, table level.

Is This Answer Correct ?    0 Yes 13 No

can we drop column from a table..

Answer / nitesh

yes we can drop any column
ALTER TABLE <TABLENAME> DROP COLUMN <COLUMNNAME>
e.g ALTER TABLE EMP DROP COLUMN NAME

Is This Answer Correct ?    20 Yes 36 No

Post New Answer

More DB2 Interview Questions

Can you define an Index if the table size less than 10 PAGES?

1 Answers   IBM,


What is the role of the data page in the db2 database?

0 Answers  


Is ibm db2 free?

0 Answers  


Give some example of statistics collected during RUNSTATS?

1 Answers  


what is dynamic cursor?gives syntax for this?

1 Answers   TCS,


What is the difference between a package and a plan?

6 Answers   Infosys, L&T, Mphasis,


What is commit in db2?

0 Answers  


What is referential integrity?

5 Answers  


What is db2 bind?

0 Answers  


What is copy book?

1 Answers   Thomson Reuters,


Describe the elements of the SELECT query syntax?

3 Answers  


In a Cobol-DB2 program, I am fetching rows from 4 tables using cursor and then based on the a field present in that table, It processes the information accordingly..for example stat-c is one digit field..if stat-c is 'D' then the a row is deleted from table and written those details in to a file. If the stat-c is 'U' then a row is updated (hardcoded what to update)in a table and written those details in to a file. If the stat-c is 'I' then a row is inserted in a table and written those details in to two files. The issue is i have to include the intermediate commits. When an abend occurs, due to commit statement db2 tables will be saved, But there will be lose of file contents. When we resubmitting the job associated with this program there will be insert ,update and delete anomolies to avoid that what measures could be taken?. The intermediate commit is nothing but issuing commit after massive inserts, updates and deletes(sum of 500actions)

2 Answers  


Categories