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

Create table Employee
(
Employee_Id varchar2(8) Constraint emp_id_pk primary key,
FirstName varchar2(50),
LastName varchar2(50),
DeptID Number(5)
Constraint dept_id_fk Foreign Key(DeptId)
References Department(DeptId)
)

Error I am getting: Constraint specification are not
allowed here

Answer Posted / durgarao k

Create table Employee
(
Employee_Id varchar2(8) Constraint emp_id_pk primary key,
FirstName varchar2(50),
LastName varchar2(50),
DeptID Number(5),
Constraint dept_id_fk Foreign Key(DeptId)
References Department(DeptId)
)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to omit columns with default values in insert statement in oracle?

1035


How do I use os authentication with weblogic jdriver for oracle and connection pools?

1028


Why does oracle 9i treat an empty string as null?

1034


what is the difference between functional dependecy and multilevel dependency?

2444


Difference between the “verify” and “feedback” command?

1342


Can we insert data in view oracle?

996


Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.

2099


What is the exact use of Collections?

2130


Is it possible to center an object horizontally in a repeating frame that has a variable horizontal size ?

2333


how to do daily transactions with out sql* loader control file regesterd in apps?

1665


how do u setup a replication site?

1962


What is blob datatype?

1097


what happened to the global index when I truncate the data in one of the partition?

2008


How to end the current transaction in oracle?

1011


How can we find out the duplicate values in an oracle table?

1032