Temporary tables are tables that automatic lose their content at the end of a transaction or session.

learn more… | top users | synonyms

6
votes
5answers
194 views

Duplicate all rows in a table and prevent duplicate keys

I am tring to do this Get all rows in a blogs named table. Copy them in a temporary database Edit the language field of this temporary table records Insert into the blogs table And I'm trying it ...
0
votes
1answer
38 views

SQL script to check a value then if found increment a field by a value of 1

Im trying to write a script that will pull the information from a table called 'bookings', this contains a column that gives the length of each booking called 'hours'. Values in this column are shown ...
1
vote
2answers
72 views

Drop set of columns with only null values from a table using SQL Server 2008

Take for example this example as an illustration so you can see what Î'm trying to do. This is how the final table of the pivoted information looks like. Create Table [#Comparative] ( Branch ...
0
votes
1answer
33 views

What does the suffix of a temporary table's name mean?

If you expand the tempdb node and go to Temporary Tables, you will notice the name of the temporary tables have "______XXXXX" appended. Where does that part refer to?Is it the memory place where the ...
1
vote
1answer
54 views

Insert speed Temporary Table vs Normal table

there are many threads about temporary tables vs table variables. However, my question is, what makes temporary table much faster than normal table in Microsoft SQL Server? My stored procedure runs ...
0
votes
0answers
21 views

using @temptable or #temptable and droping them [duplicate]

what is the difference between @temptable and #temptable. I have used the #temptable and when I tried to access it in Microsoft reports(.rdlc) the column name of the store procedure were not visible. ...
1
vote
2answers
40 views

SQL Generate Missing Records in SELECT

Using MS SQL Server 8.0.760 (2000) I have a Table like this: Table A Day | Hour | Value 2012-10-01| 12 | 780 2012-10-01| 14 | 678 2012-11-02| 08 | 123 2012-11-02| 09 | 473 Expected ...
0
votes
3answers
80 views

How to create a temporary MySQL table with a UUID name in Coldfusion?

I'm using Coldfusion8 and MySQL 5.0.91 and am trying to create a temporary table, import some data from CSV, validate, store in database and drop the temp table. I can do all steps in MySQL directly, ...
1
vote
2answers
25 views

How to select from a table with criteria needing to match a temporary table?

I have two tables. One contains articles, the other one price quotations. I'm trying to select [EAN] from the articles table and price from the quotation table if dimensions in both tables are ...
0
votes
0answers
26 views

How to use an “IN” clause with an array?

I am trying to do this: SET @my_array = (54,24,155,76,96,255,...); INSERT INTO some_table WHERE something IN @my_array...; DELETE FROM some_table WHERE something IN @my_array...; INSERT INTO ...
0
votes
0answers
12 views

temporary tables not working if database dont have insert permission

In my application i have used temporary tables but now my database server has been changed and new server don't have insert permission for tables.Now my temporary tables not working. Is it possible ...
0
votes
1answer
41 views

What does `delete <table name>` in PLSQL code mean?

I have a PLSQL code with the following line of code. delete my_table; Where my_table is a Global Temporary Table. I am guessing the above code means, delete all rows from the table. However, I am ...
1
vote
1answer
131 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
311 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, ...
1
vote
2answers
127 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
325 views

Insert Data vertically into temp table using cursor

As above mentioned. I have created 2 temp tables in SQL and need to insert vertically to complete all columns but as I understand, you can only insert data horizontally? Is there a way around this? ...
1
vote
1answer
161 views

Firebird: simulating create table as?

I'm searching a way to simulate "create table as select" in Firebird from SP. We are using this statement frequently in another product, because it is very easy for make lesser, indexable sets, and ...
0
votes
1answer
116 views

Apache Tomcat Connection Pool and Oracle Global Temporary Table. Can data be shared?

I got some spring batch jobs running on multipartitions...I wanted to use oracle's global temporary tables as my batch job's staging table so that the staging table lives only during my job run...As ...
0
votes
0answers
189 views

MySQL Hibernate delete bulk joined-subclass , temporary table locks the table

I am using PlayFramework (1.2.5) , there is one class MedicalLog extends class Log , as follows : @Entity @Inheritance(strategy=InheritanceType.JOINED) public class Log extends Model { ... } and ...
0
votes
1answer
60 views

How to list declared temporary tables in DB2

You can created session temporary tables in DB2 using the DECLARE GLOBAL TEMPORARY TABLE statement. Is there any way to list all the tables that currently exist in the session's SESSION schema? Note ...
0
votes
2answers
447 views

Unable to copy data to temporary table using select statement in sql - server 2008

I am copying the data to temporary table using select statement which produces the result of pivoting. My procedure is: alter procedure proc11 AS create Table #Temp (Software varchar(max), Ver ...
0
votes
1answer
252 views

Storing records to temporary table inside dynamic query when using Pivot.

I am new to sql programming. I want to store the records returned as result set from the pivot query. Pivot's columns are selected dynamically. My query is: declare @cols nvarchar(max) set ...
0
votes
0answers
20 views

ADODB Cursors and Temporary Tables

If I create a temp table using SQL through an ADODB connection with a client-side cursor location, will there be any issues accessing it through an ADODB created using a server side cursor or vice ...
0
votes
0answers
305 views

How to allow temporary tables to accept null values

If you create temp tables using "insert into" in SQL Server it uses the first insert to determine whether a column accepts null value or not. if the first insert has null value the column become ...
0
votes
2answers
122 views

Update from Temp Table

Query: SELECT ID, T.c.value('@Address', 'nvarchar(20)' ) as Address INTO #TMP FROM TABLE1 CROSS APPLY XMLData.nodes('/Document') AS T(c) UPDATE TABLE1 SET HomeAddress = (SELECT TOP 1 t.Address ...
0
votes
1answer
239 views

How MySQL put all NEW/OLD trigger data to temporary table and use in procedure?

How to put the NEW/OLD data into temporary table without filed name. I've tried create trigger, procedure like this but it fails: CREATE TRIGGER `after_insert` AFTER INSERT ON `master` FOR EACH ROW ...
0
votes
2answers
155 views

DB2 9.7 SQL syntax, what am I doing wrong?

For one reason or other which are out of my control I am attempting to simply pull data over the past 12 months. However, essentially down to the size of data, I have to query each day into a temp ...
0
votes
1answer
81 views

MySQL Temp Tables or View?

I got 3 tables that have stored common data from registration from users: languages, countries, nationalities. Each table have fields: id and name. I got a main table users where it stores almost all ...
0
votes
1answer
119 views

Create temporary TABLE inside a FUNCTION [duplicate]

How can I create a temporary table that I can return when the function is called?
0
votes
0answers
50 views

How to work with temporary tables in CakePHP2.x

i read a lot of other postings about my problem, but i don't know how to solve it: i read 2 tables and want to combine them in one temporary table. i tried, like other users with following code: ...
1
vote
1answer
292 views

Stored procedure mixing results into temp tables from different invokations

I'm using a stored procedure in Mysql that creates 3 temporary tables that store records from database's tables, and then used to select the final result from those subset of stored records. The ...
0
votes
0answers
44 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
2answers
68 views

Oracle cursor with variables help needed

I am trying to do a cursor which does something like below, struggling with different approaches with no results. Seems, I won't be able to do it by myself, and decided to ask you for help. Below code ...
0
votes
1answer
54 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
89 views

How to convert a temporary table to permanent table in Oracle and vice versa

I would like to know which is the command to convert a temporary table to permanent table in Oracle. Other issue is about the index. An index used in a temporary table will be the same used in a ...
0
votes
1answer
196 views

Connection scoped temp tables across stored procedures

I'm working on a data virtualization solution. The user is able to write his own SQL queries as filters for a query i make. I would like not having to run this filter query every time i select ...
0
votes
1answer
190 views

Temporary table definition in MySQL

I have a stored procedure which uses temporary tables so that I can summarize the sales of all the products within a certain product category. When I tried to run the code it failed. I search on ...
0
votes
1answer
164 views

Temporary Tables Not Working in PHPMyAdmin

I run this query CREATE TEMPORARY TABLE usercount SELECT * FROM users I get this message Your SQL query has been executed successfully ( Query took 0.1471 sec ) But when I try to access the ...
0
votes
0answers
112 views

MySql :: using temp table in while loop

Can I use Temp table within While Loop in MySQL like : WHILE (@CurrIndex <= @RowsCount) DO SELECT FileReference,FileID,AllowDelete,ReferenceID FROM deletefilesreferences LIMIT 1; ...
2
votes
2answers
1k views

How to get results of stored procedure #1 into a temporary table in stored procedure #2

I am trying to combine the results of several stored procedures into a single temporary table. The results of the various stored procedures have the same column structure. Essentially, I would like to ...
0
votes
2answers
80 views

MySQL creating view which is union of two tables with one tables values prefixed

I have authentication system which gets permissions from MySQL database. CREATE TEMPORARY TABLE db.temp (authority VARCHAR(100)); INSERT INTO db.temp (authority) SELECT blog.authors.id FROM ...
1
vote
1answer
210 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
2answers
195 views

Using dynamic temporary table

I have the following situation: i need to create some temporary tables to optimize a load problem the recently has ocurred. It seems that LINQ to SQL doesn't work well with temporary table, unless ...
0
votes
1answer
444 views

MySQL Stored Procedure, Memory Temporary Table too slow?

I'm trying to write a stored procedure in MySQL. For complicated reasons I have an aggregate query with a bunch of joins to look object ids, and then do another query with more joins (including same ...
1
vote
1answer
64 views

Turn SQL Server table variable into real table

I have a temporary table created with: DECLARE @tbl_fk_errors TABLE ( id int Primary Key IDENTITY(1,1) , tbl_id int , tbl_name nvarchar(128) , tbl_record_id int , tbl_field ...
0
votes
1answer
275 views

How to get an object ID from temporary table using object_id function

I have created a table as below: create table #tab ( id int ) Now, I want to get an object id of the table. I tried on the same session: select object_id( "#tab" ) and select object_id( ...
3
votes
1answer
148 views

alternative to temporary tables

what I need (and got with temporary tables or views is this): numcasos valcount1 valcount2 -------- --------- ----------- 0 2 1 1 1 2 ...
0
votes
1answer
74 views

PHP: Remove Rows Not in Large List

My application needs to change a value in a table if it is not in a very large set (20,000 items) that come in through an XML API. Obviously, it would be easy to create a solution that would be very ...
2
votes
1answer
175 views

SQL Server 2008 - #tmp table throws error when run within an exec command [duplicate]

Possible Duplicate: TSQL Writing into a Temporary Table from Dynamic SQL ALTER PROCEDURE [dbo].[usp_ServicesStats1](@PERIOD VARCHAR(30) ) AS BEGIN -- SET NOCOUNT ON added to prevent ...
5
votes
1answer
333 views

Not getting expected output while using Temp Table or Cursor in MySQL

I'm doing some POC. I've written one stored procedure in MySQL. I'm using MySQLWorkbench for database operations like creating new table, stored procedures, query execution etc. I'm observing some ...

1 2 3 4 5 7