Which is better Oracle or MS SQL? Why?
Answers were Sorted based on User's Feedback
actually oracle give's more security and best performance other then any databases like ms-sqlsever, DB2,sybase etc.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / abhisudipta
Obviously Oracle is the better one, because oracle is the
one of the RDBMS which maintains only 9 Normalization rules
out of 11 normalization rules.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to join two tables in a single query using oracle?
What is connection pool in oracle?
Where do you use decode and case statements?
What are the different types of synonyms?
What is the usage of merge statement?
SELECT * FROM (SELECT TITLE FROM MOVIE ORDER BY RANK DESC) WHERE ROWNUM > 4; when i run the above query .it produces output as NO ROWS SELECTED.why ?plz any one help me
I have a table that log salary-increase-process have fields: autoid, old_salary, acctno and table EMP: acctno, name, salary I want to list count increase-salary of employees, each have old_salary, new_salary. Help me with SELECT statement, please!
When system tablespace is created?
How to connect to a local oracle 10g xe server?
How do I find my oracle client driver version?
What are dml statements in oracle?
write sql query following source are EmpID, Salary 101 1000 102 2000 103 3000 I want the output format like following empid,sal,composite_sal 101 1000 1000 102 2000 3000 103 3000 6000