Tagged Questions
1
vote
1answer
148 views
oracle pl/sql loading large data into temp table
I have a use case where a large amount of data sometimes a million rows added to a temporary table (session global temp table) and the table to be joined to another table to produce ...
1
vote
1answer
359 views
DECLARE GLOBAL TEMPORARY TABLE Vs CREATE GLOBAL TEMPORARY TABLE in DB2
am creating a GLOBAL TEMPORARY TABLE in DB2. and when i surfed i got a two way to create
1. Declare
2. Create.
1. DECLARE GLOBAL TEMPORARY TABLE SESSION.TEMP_EMP
(EMPNO CHAR(6) NOT NULL,
...
0
votes
0answers
45 views
MySQL cursor implementation - seems very inneficient
Using MySQL 5.0.95 (tragically), I am building a slope one implementation.
I have a table with 34M rows that i need to evaluate for slope one ratings. The table is fairly sparse, consuming only ...
0
votes
1answer
89 views
Copying Rows of Table0 to Table2 Where Same Rows Do Not Exist in Table1 (PostgreSQL)
Could anyone please tell me which one of the following is more efficient? I have tens of millions of rows to process, and performance is critical.
In the second example, table0 is a temporary table, ...
0
votes
0answers
290 views
mysql query speed. why query from memory tables with tmp table slower than direct select?
i'm a bit confused of such mysql behaviour.
one query, with ORDER BY clause creates tmp table (as shown in show profile) and runs faster that the same query without order by with doesn't create tmp ...
0
votes
1answer
37 views
Replacing a large percentage of rows in a mySQL table
I'm aggregating data from one table into another using a query similar to these:
DELETE FROM wp_popular WHERE popular_type='favorites';
INSERT INTO wp_popular (post_id, popular_type, period, ...
0
votes
2answers
5k views
SQL CTE in a View vs Temp Table in a Stored Procedure
Please bear with me -- I know this is complex.
I have a table that contains apartments, and another that contains leases for those apartments. My task is to select the "most relevant" lease from the ...
0
votes
1answer
768 views
peformance efficiency in global temporary tables vs. normal tables - oracle 10g
I am using large number of global temporary tables for generating huge reports against an Oracle 10g database. Each report consists of 4 to 5 global temporary tables(GTT) per say. But as far as I ...
8
votes
1answer
3k views
SQL Server CTE referred in self joins slow
I have written a table-valued UDF that starts by a CTE to return a subset of the rows from a large table.
There are several joins in the CTE. A couple of inner and one left join to other tables, which ...
2
votes
2answers
962 views
Is it wise to use temporary tables?
We have a mySQL database table for products. We are utilizing a cache layer to reduce database load, but we think that it's a good idea to minimize the actual data needed to be stored in the cache ...
0
votes
3answers
689 views
Should you use temporary tables to pass data between stored procedures?
I have a number of search functions (stored procedures) which need to return results with exactly the same columns.
This is the approach that was taken:
Each stored procedure had the general ...
3
votes
2answers
4k views
Serious MySQL Performance Issue (Joins, Temporary Table, Filesort…)
I've got a users table and a votes table. The votes table stores votes toward other users. And for better or worse, a single row in the votes table, stores the votes in both directions between the two ...
20
votes
7answers
17k views
Which are more performant, CTE or temporary tables?
Which are more performant, CTE or temporary tables?
17
votes
2answers
22k views
PostgreSQL temporary tables
I need to perform a query 2.5 million times. This query generates some rows which I need to AVG(column) and then use this AVG to filter the table from all values below average. I then need to INSERT ...
