i can create a view with two columns from emp table,, later
i need to add one more emp column to existing view.. what is
query
similarly add one more column to existing primary key
constraint.. please give me the solutions
Answers were Sorted based on User's Feedback
Answer / raghavendra
create or replace view <view_name> as select * from emp;
or you can provide the columns in select command
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / venki
CREATE OR REPLACE VIEW VIEW_NAME AS SELECT COL1,COL2,REQ_COL
FROM EMP;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / prasad_dwh09
dropping and recreating of view is not i am expecting..
| Is This Answer Correct ? | 2 Yes | 2 No |
What is a partition in oracle?
Can a formula column referred to columns in higher group ?
how the indexes are stored in the Oracle Database?
how to genarate random numbers in oracle for particular row?
How can windows applications connect to oracle servers?
Explain oracle 12c new features for developers?
How to use subqueries in the from clause in oracle?
What is columnar storage what is the advantage?
what is load balancing and what u have used to do this?(sql loader)
what is the syntax of DROP command?
what is shell?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?