Re: Temporary tables inside procedure
- From: "Jared Still" <jkstill@xxxxxxxxx>
- To: mark.powell@xxxxxxx
- Date: Mon, 31 Jul 2006 12:06:45 -0700
On 7/28/06, Powell, Mark D <mark.powell@xxxxxxx> wrote:
2- you usually do not need temporary tables in Oracle. Many times
#tables are used in SQL Server just because of how poorly it handles
joins of 5 - 10 tables. In Oracle just do the join. Alternate features
that can sometime replace a temporary table include reference cursors,
piped row functions, and pl/sql collection structures.
And due to SQL Server allowing dirty reads.
As Mark stated, there's usually no need for temp tables in Oracle.
--
Jared Still
Certifiable Oracle DBA and Part Time Perl Evangelist
- References:
- Temporary tables inside procedure
- From: Harvinder Singh
- RE: Temporary tables inside procedure
- From: Powell, Mark D
Other related posts:
- » Temporary tables inside procedure
- » Re: Temporary tables inside procedure
- » RE: Temporary tables inside procedure
- » Re: Temporary tables inside procedure
- » Re: Temporary tables inside procedure
2- you usually do not need temporary tables in Oracle. Many times #tables are used in SQL Server just because of how poorly it handles joins of 5 - 10 tables. In Oracle just do the join. Alternate features that can sometime replace a temporary table include reference cursors, piped row functions, and pl/sql collection structures.
-- Jared Still Certifiable Oracle DBA and Part Time Perl Evangelist
- Temporary tables inside procedure
- From: Harvinder Singh
- RE: Temporary tables inside procedure
- From: Powell, Mark D