answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What determines the type of data that can be stored in a column on an oracle table?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can one create tables in Oracle?

If one is wanting to create a table in Oracle one must use the "Create Table" statement. These tables are partially defined by the columns contained and the information in the column. One must first decide the proper column type and then these data types are used in the Create Table statement. One must be somewhat familiar with Oracle in order to create these tables and additional information can be found on the DBA-Oracle website.


What does elements in a column of the periodic table have?

Elements in same column have same number of outermost electrons. It determines chemical properties.


How do you create a primay key in Oracle?

You can create a primary key column in an oracle table using the PRIMARY KEY keyword. Assuming you have an employee table that has employee information and has a column called emp_num. you can create a primary key in the table using the below command. ALTER TABLE tbl_employee_info add CONSTRAINT emp_pk PRIMARY KEY (emp_num) If you execute the above command in your database, emp_num will become the primary key of the table tbl_employee_info.


What does each column in a database represent?

Each column in a database table represents an attribute reg. the data that is held in that table. For ex: Table Employee can contain employee number, name, age, date of joining etc. Each of these items would be stored as individual columns in the Employee table.


What does each column in database represent?

Each column in a database table represents an attribute reg. the data that is held in that table. For ex: Table Employee can contain employee number, name, age, date of joining etc. Each of these items would be stored as individual columns in the Employee table.


What is space table in oracle?

Oracle table space is an identifier for a physical file found at the operating system level.


What is default table space in oracle?

DUAL table


Oracle Alter a column's varchar length I want to change a varchar30 to a varchar20. can please help me get the syntax for it?

ALTER TABLE table_name MODIFY (column_name VARCHAR2(20));


Where are tables stored in oracle database?

In Oracle, tables are stored in segments, which are stored in extents, which are stored in tablespaces, which are stored in datafiles on the host system. This is a DBA issue. No application developer should concern themselves with this topic, except to identify data and query needs to the DBA.


How you remove a table in oracle?

via sql one can remove an oracle table (if one has the appropriate privileges) using the drop table tablenamesyntax,or, if one wishes to 'empty' a table, usetruncate table tablename


Where the table gets storage in oracle?

In Oracle, the table gets its storage space from extents, which get their storage space from tablespaces, which get their storage from datafiles.


How do you delete row in oracle table from vb?

you right click it and you scole down to delete row in oracle table that should work