1
vote
2answers
120 views

Creating temporary tables in SQL

I am trying to create a temporary table that selects only the data for a certain register_type. I wrote this query but it does not work: $ CREATE TABLE temp1 (Select egauge.dataid, ...
0
votes
1answer
52 views

PostgreSQL function-OID: 'my OID' where 'my' is the currently executing user-defined-function

This query returns the OID of the function whose name and signature is supplied: select 'myfunc(signature)'::regprocedure::oid; But is there something in PostgreSQL plpgsql like a ...
1
vote
1answer
209 views

PostgreSQL temporary table cache in memory?

Context: I want to store some temporary results in some temporary tables. These tables may be reused in several queries that may occur close in time, but at some point the evolutionary algorithm I'm ...
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
1answer
190 views

How to copy both structure and contents of PostgreSQL table, but duplicate sequences?

I'm trying to setup temporary tables for unit-testing purposes. So far I managed to create a temporary table which copies the structure of an existing table: CREATE TEMP TABLE t_mytable (LIKE mytable ...
3
votes
1answer
754 views

PostgreSQL equivalent of MySQL memory tables?

Does PostgreSQL have an equivalent of MySQL memory tables? These MySQL memory tables can persist across sessions (i.e., different from temporary tables which drop at the end of the session). I ...
2
votes
1answer
2k views

PostgreSQL CREATE TEMPORARY TABLE inside a plpgsql function

I am trying to create a function that does this drop table t_rv_openitem; select * into t_rv_openitem from rv_openitem; select * from t_rv_openitem; But I am a retard when it comes to functions in ...
0
votes
2answers
551 views

Postgres and temporary tables

I have a stored procedure that use temp table and explicitly drops it when done. What happed when same procedure is run at same time by 2 different sessions? Sessions are run as single user (webapp). ...
1
vote
2answers
1k views

Using a temporary table to replace a WHERE IN clause

I've got the user entering a list of values that I need to query for in a table. The list could be potentially very large, and the length isn't known at compile time. Rather than using WHERE ... IN ...
3
votes
1answer
824 views

Temporary table in pgAdmin

I am using pgAdmin for my Postgres 8.4 database and I was wondering where (any table/schema/etc. ?) may I find a list of currently used temporary tables? I assume there has to be a place where I can ...
0
votes
1answer
135 views

DML statistics on a table

We're using PostgreSQL 8.2. In our application, we heavily use a temporary table (REPORTTEMP) for report generation purpose. All type of DML statements are performed in this table, but UPDATE ...
16
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 ...