Forum: Oracle 4 Days Ago |
| Replies: 3 Views: 220 Unique key enforces only uniqueness (no duplicate) where as a Primary key enforces both uniqueness and not null (data must be entered into the field). Once a PK is created on a column oracle creates... |
Forum: Oracle Jul 16th, 2009 |
| Replies: 4 Views: 581 Try the following link (http://www.oracle.com/pls/db102/homepage) and select SQL Reference |
Forum: Oracle Jun 24th, 2009 |
| Replies: 1 Views: 975 You need to use the function RUN_REPORT_OBJECT
DECLARE
repid REPORT_OBJECT;
v_rep VARCHAR2(100);
rep_status varchar2(20);
BEGIN
repid := find_report_object('report4');
v_rep :=... |
Forum: Oracle Mar 11th, 2009 |
| Replies: 3 Views: 941 For that you need to use a staging table and update the master table based upon data in the look up table.
You need to handle the code in a PL/SQL block. |
Forum: Oracle Nov 8th, 2008 |
| Replies: 2 Views: 1,300 at command prompt type exp help=y you will get the list of parameters for export . repeat the same for import with keyword imp |
Forum: Oracle Apr 21st, 2008 |
| Replies: 4 Views: 2,755 You need to use BETWEEN clause . |
Forum: Oracle Mar 3rd, 2008 |
| Replies: 5 Views: 3,911 in sql *plus type HOST
in the command prompt type
exp username/password@databasename
then just follow the instructions as prompted |
Forum: Oracle Feb 22nd, 2008 |
| Replies: 4 Views: 11,727 It is better to start a different thread for a new question.
anyways try to use this sample query
DELETE FROM emp e WHERE rowid>(SELECT MIN(ROWID) FROM emp WHERE e.empno=empno) |
Forum: Oracle Feb 5th, 2008 |
| Replies: 8 Views: 1,365 You can't convert directly. But you can upload data of access into oracle.
You can export the data of access into a .CSV file and from oralce use the SQL LOADER to load the same data to oracle... |