How we create a tables in db2,what is the process/syntax to
create a table with example plz?
Answer Posted / 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 View All Answers
How to compare data between two tables in db2?
If anyone has IBM Certification Dumps pls forward to me & also let me know what are the Certification Codes that are available in DB2
What is difference between rollback and commit?
How to take backup of table in db2?
What is the physical storage length of date data type?
What is cobol db2?
What are packages in db2?
What is runstats db2?
What do you mean by rollback?
define clustering index.
What is query_cache_limit?
How many databases can be created inside an instance in db2 ?
What is db2 optimizer?
When do you specify the isolation level?
How can the firstname and the lastname from the emp table be concatenated to generate complete names?