Archives
-
Oracle SQL tuning tips
Tweet Oracle SQL Tuning Tips consideration when writing an SQL statement is that it returns a correct result. The second is that it be the most efficient for a given situation. You can use many different SQL statements to achieve the same result. It is often the case that only one statement will be the [...]
Jun 24th, 2009 | Filed under Database Performance Tuning, Database programming, Oracle, Oracle Database, Oracle DBA, Oracle developers, Oracle PL/SQL -
Oracle Export and Import utility tutorial
Tweet Oracle Data Export and Import utility The Import and Export utilities work together; Export sends database definitions and actual data to an export file and Import can read the file to perform many different tasks. You can use Export and Import for many important database tasks, such as restoring a table, generating CREATE scripts, [...]
Jun 23rd, 2009 | Filed under Database Performance Tuning, Database programming, Oracle, Oracle Database, Oracle DBA, Oracle developers -
Oracle SQL hints
Tweet /*+ hint */ /*+ hint(argument) */ /*+ hint(argument-1 argument-2) */ All hints except /*+ rule */ cause the CBO to be used. Therefore, it is good practise to analyze the underlying tables if hints are used (or the query is fully hinted. There should be no schema names in hints. Hints must use aliases [...]
Apr 2nd, 2009 | Filed under Applications Performance Tuning, Database Performance Tuning, Oracle, Oracle DBA
