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...


How we create a tables in db2,what is the process/syntax to
create a table with example plz?

Answers were Sorted based on User's Feedback



How we create a tables in db2,what is the process/syntax to create a table with example plz?..

Answer / dba

Its very much similar as we sue in other DB

Syntax: CREATE TABLE EMPLOYEE(EMP_ID CHAR(10), NAME VARCHAR(20))

The syntax is usful only in command center
But from GUI its more easier to create table

Is This Answer Correct ?    14 Yes 5 No

How we create a tables in db2,what is the process/syntax to create a table with example plz?..

Answer / ratheesh nellikal

Answer posted by Dba is correct.
But in real time schenario we should be more specific.
eg:
CREATE TABLE SCHEMA.TABLENAME
(column1 DATATYPE,
column2 DATATYPE,
column3 DATATYPE)
IN tablespace_name
INDEX IN index_tablespace;

so try to follow this syntax (u can have more options with
this command like u can even specify the tablespace name wr
do u want to store ur LONG object 'LONG IN
long_tablespace' )

Cheers,
Ratheesh Nellikal

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More DB2 Interview Questions

What is the function of buffer manager?

1 Answers  


Explain db2.

0 Answers  


What is the difference between drop table and delete table?

0 Answers  


For unmatched rows returned from an outer join, the column values in the other table are set to null e.g If A OUTER JOIN B returns some unmatched rows from A, the corresponding column values in B will be set to null. What can be done so that a null value is not displayed for these columns?

3 Answers  


Mention the length of physical storage of the given data types of db2 – date, timestamp, time

0 Answers  


Is schema the same as database?

0 Answers  


What is db2 bind?

0 Answers  


What happens in bind step in a db2 program?

0 Answers  


How to resolve deadlock issue

5 Answers   IBM,


How is a typical db2 batch pgm executed?

0 Answers  


What is the purpose of the WHENEVER statement?

1 Answers  


Explain what a plan is?

3 Answers   CTS,


Categories