Forum: Oracle 3 Days Ago |
| Replies: 2 Views: 172 Delete
-----------
1. DML
2. Affects only data.
3. Data can be rolled back after this command.
Truncate
----------------
1. DDL
2. Affects both data and structure (resets the High Water... |
Forum: Oracle 3 Days Ago |
| Replies: 2 Views: 174 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 6 Days Ago |
| Replies: 1 Views: 219 Try using the following link (http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261.pdf).
This is part of oracle documentation library. |
Forum: Oracle 9 Days Ago |
| Replies: 1 Views: 294 What exactly is your requirement ? |
Forum: Oracle 11 Days Ago |
| Replies: 2 Views: 401 Are you using the SPOOL command to generate the flat file ? |
Forum: Oracle 12 Days Ago |
| Replies: 1 Views: 301 Then you need to use the free tool Query Reporter (http://www.allroundautomations.com/plsqldev.html) |
Forum: Oracle 13 Days Ago |
| Replies: 4 Views: 508 You need to read books , there are thousands of example lying abundantly across millions of web pages . |
Forum: Oracle 16 Days Ago |
| Replies: 2 Views: 638 Kindly mention what exactly you are looking for and what are you getting as output from your query. |
Forum: Oracle 16 Days Ago |
| Replies: 4 Views: 508 |
Forum: Oracle 22 Days Ago |
| Replies: 7 Views: 757 Then you need to try this (http://www.toadsoft.com/lic_agree.html).
TOAD does not come in that price range. |
Forum: Oracle 23 Days Ago |
| Replies: 7 Views: 757 How much you are ready to invest for the tool ? |
Forum: Oracle 26 Days Ago |
| Replies: 3 Views: 583 Find the complete list of providers here (http://www.connectionstrings.com/oracle). |
Forum: Oracle 26 Days Ago |
| Replies: 7 Views: 757 if you are ready to pay use TOAD or PLSQL DEVELOPER, the best possible tools in market. |
Forum: Oracle 27 Days Ago |
| Replies: 11 Views: 3,597 in oracle 11g credentials are case sensitive unlike any of the previous versions. |
Forum: Oracle 27 Days Ago |
| Replies: 4 Views: 763 Have a look at this sample code
INSERT ALL
INTO sales (prod_id, cust_id, time_id, amount)
VALUES (product_id, customer_id, weekly_start_date, sales_sun)
INTO sales (prod_id,... |
Forum: Oracle 28 Days Ago |
| Replies: 4 Views: 763 You need to use INSERT ALL. |
Forum: Oracle 32 Days Ago |
| Replies: 1 Views: 582 you need to create a check constraint with the desired values on the desired column of the table. |
Forum: Oracle Nov 13th, 2009 |
| Replies: 3 Views: 744 is the entry available in TNSNAMES.ORA ? |
Forum: Oracle Nov 12th, 2009 |
| Replies: 3 Views: 744 you are trying to create a new database or trying to log in to existing database. |
Forum: Oracle Nov 4th, 2009 |
| Replies: 3 Views: 729 Try to use set operator, that should solve your Qry1 and Qry2.
for the third qry try to join both the tables. |
Forum: Oracle Nov 3rd, 2009 |
| Replies: 3 Views: 729 would you mind to post here what are the different things that you have tried ? |
Forum: Oracle Nov 3rd, 2009 |
| Replies: 1 Views: 686 what is a minor project .you need to decide first what you want to do. |
Forum: Oracle Nov 2nd, 2009 |
| Replies: 5 Views: 986 you need to read books for all the details. |
Forum: Oracle Oct 29th, 2009 |
| Replies: 6 Views: 1,008 you mean to say , u want to include media files to database ? |
Forum: Oracle Oct 29th, 2009 |
| Replies: 5 Views: 986 Only the owner of the object has the permission/access on the object. Other users needs to be granted permissions by the owner/dba for access which is taken back by the REVOKE command.
If... |
Forum: Oracle Oct 29th, 2009 |
| Replies: 16 Views: 1,870 i don't think i understood your last question. |
Forum: Oracle Oct 21st, 2009 |
| Replies: 1 Views: 830 kindly post your table structure. |
Forum: Oracle Oct 21st, 2009 |
| Replies: 5 Views: 2,164 missing CONSTRAINT key word on line 8. |
Forum: Oracle Oct 21st, 2009 |
| Replies: 6 Views: 1,008 what the project is all about ?
Is it only a database projects ? |
Forum: Oracle Oct 21st, 2009 |
| Replies: 16 Views: 1,870 once you start installing 10/11 g you will get the list of pre-installed oracle homes/products. You need to uninstall the existing 9 version before installing the higher version. |
Forum: Oracle Oct 16th, 2009 |
| Replies: 2 Views: 980 you can always do that , just use sysdate that will handle your date problem. |
Forum: Oracle Oct 15th, 2009 |
| Replies: 16 Views: 1,870 ORACLE will not come in that list of installed software. Uninstall from oracle main menu from start button or use the oracle CD. |
Forum: Oracle Oct 14th, 2009 |
| Replies: 16 Views: 1,870 better install any latest version and set the passwords carefully. |
Forum: Oracle Oct 13th, 2009 |
| Replies: 16 Views: 1,870 try log in as
sys/ as sysdba
password----change_on_install
If you are planning to reinstall better use any advance version .
Current version for windows is 11.1 |
Forum: Oracle Oct 13th, 2009 |
| Replies: 16 Views: 1,870 do you have the password for sys or system account ? |
Forum: Oracle Oct 12th, 2009 |
| Replies: 16 Views: 1,870 You don't have the user name password ? |
Forum: Oracle Oct 11th, 2009 |
| Replies: 16 Views: 1,870 Are you getting something like SQL WORKSHEET under application development ? |
Forum: Oracle Oct 9th, 2009 |
| Replies: 4 Views: 995 Just try adding a GROUP BY statement to your existing query. |
Forum: Oracle Oct 8th, 2009 |
| Replies: 4 Views: 995 Sorry, we do not solve home works /assignments here.
The error message is self explanatory. |
Forum: Oracle Oct 6th, 2009 |
| Replies: 1 Views: 1,008 I think you are trying to redefine SQL with your own bunch of syntax. What are those WHILE and WHEN in your code ? |