Forum: Oracle Aug 11th, 2006 |
| Replies: 1 Views: 2,018 First off, hints can be overridden by the Oracle optimizer. Just so you know.
If you want to track performance do this:
1. Before you run your SQL
ALTER SESSION SET SQL_TRACE TRUE;
run... |
Forum: Oracle Aug 11th, 2006 |
| Replies: 1 Views: 23,161 This is more complex than you might think. Here is an in-depth article on sending email:... |
Forum: Oracle Jun 9th, 2006 |
| Replies: 4 Views: 6,943 FWIW - Oracle is as good as it gets on sorting. If the fields being sorted are indexed, you get maximum speed.
We sort 200,000,000 records in 10-12 minutes - but that doesn't mean anything -... |
Forum: Oracle Mar 13th, 2006 |
| Replies: 1 Views: 2,105 SQL> col brackets format a7 trunc
SQL> select '[ ]' brackets,
my_field1
from mytable;
BRACKET MY_FIELD1
------- ---------------
[ ] JOHN SMITH |
Forum: Oracle Dec 7th, 2005 |
| Replies: 1 Views: 2,641 Your specifications are kinda fuzzy - I used PL/SQL to get what I thought you wanted - one weeks worth of data. The &1 thing is for interactive input.
If you saved this as "someday.sql" then usage... |
Forum: Oracle Nov 30th, 2005 |
| Replies: 1 Views: 2,428 Using Oracle and the SQL langauge are somewhat different things. Oracle has a lot of "features" like Oracle Forms and PL/SQL that are Oracle-specific.
Oracle comes with a learning "set" -- the... |
Forum: Oracle Nov 23rd, 2005 |
| Replies: 3 Views: 3,642 That's good.
Do you have a valid tnsnames.ora and sqlnet.ora file? ie., please post them here.
They are in your Oracle home directory (like ORA92)
If you version of 9i is old they will be in... |
Forum: Oracle Nov 15th, 2005 |
| Replies: 3 Views: 3,642 Can you connect using sqlplus? |