Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
37k views

check if temp table exist and delete if it exists before creating a temp table

I am using the following code to check if the temp table exists and drop the table if it exists before creating again. It works fine as long as I don't change the columns. If I add a column later, it ...
11
votes
4answers
4k views

Getting around MySQL “Can't reopen table” error

I'm currently busy implementing a filter of sorts for which I need to generate an INNER JOIN clausse for every "tag" to filter on. The problem is that after a whole bunch of SQL, I have a table that ...
10
votes
6answers
8k views

Which are more performant, CTE or temporary tables?

Which are more performant, CTE or temporary tables?
10
votes
7answers
1k views

Are temporary tables thread-safe?

I'm using SQL Server 2000, and many of the stored procedures it use temp tables extensively. The database has a lot of traffic, and I'm concerned about the thread-safety of creating and dropping temp ...
9
votes
7answers
11k views

SQL Server SELECT INTO and Blocking With Temp Tables

So, recently a DBA is trying to tell us that we cannot use the syntax of SELECT X, Y, Z INTO #MyTable FROM YourTable To create temporary tables in our environment, because that syntax causes a lock ...
8
votes
4answers
328 views

MySQL: what is a temporary table?

What is the purpose of a temporary table like in the following statement? How is it different than a regular table? CREATE TEMPORARY TABLE tmptable SELECT A.* FROM batchinfo_2009 AS A, ...
8
votes
8answers
4k views

How to get a table of dates between x and y in sql server 2005

I just want a quick way (and preferably not using a while loop)of createing a table of every date between date @x and date @y so I can left outer join to some stats tables, some of which will have no ...
5
votes
2answers
2k views

ways to avoid global temp tables in oracle

We just converted our sql server stored procedures to oracle procedures. Sql Server SP's were highly dependent on session tables (INSERT INTO #table1...) these tables got converted as global ...
5
votes
4answers
2k views

Temporary tables in Linq — Anyone see a problem with this?

In trying to solve: Linq .Contains with large set causes TDS error I think I've stumbled across a solution, and I'd like to see if it's a kosher way of approaching the problem. (short summary) I'd ...
4
votes
1answer
44 views

What data is included when MySQL creates a temporary table?

I have been reading about VARCHAR fields being converted to CHAR fields whenever MySQL generates a temporary table. If I have the following table... Excess of 100K rows A dozen VARCHAR columns set ...
4
votes
2answers
56 views

Concurrency problems with temp tables in consequent batches?

I have sometimes a problem when running a script. I have the probelm when using an application (that I didn't write and therefore cannot debug) that launches the scripts. This app isn't returning the ...
4
votes
1answer
386 views

TO_CHAR of an Oracle PL/SQL TABLE type

For debugging purposes, I'd like to be able to "TO_CHAR" an Oracle PL/SQL in-memory table. Here's a simplified example, of what I'd like to do: DECLARE TYPE T IS TABLE OF MY_TABLE%ROWTYPE INDEX BY ...
4
votes
2answers
597 views

Recommed usage of temp table or table variable in Entity Framework 4. Update Performance Entity framework

I need to update a bit field in a table and set this field to true for a specific list of Ids in that table. The Ids are passed in from an external process. I guess in pure SQL the most efficient ...
4
votes
2answers
712 views

Temporary tables using JDBC with null ResultSet

I am executing a stored procedure via standard JDBC Connection using MS SQL Driver version 3.0. I have found that when I create and insert data into a temporary table the stored procedure doesn't ...
4
votes
3answers
398 views

SQL Server - Temporary vs. Physical Tables

A movement is afoot in my place of employ to move away from using #temp tables and instead to use permanent physical tables with SPIDs. Whenever one would have previously INSERTed INTO a #temp table, ...
4
votes
2answers
2k views

Entity Framework, full-text search and temporary tables

I have a LINQ-2-Entity query builder, nesting different kinds of Where clauses depending on a fairly complex search form. Works great so far. Now I need to use a SQL Server fulltext search index in ...
4
votes
3answers
85 views

Pulling items out of a DB with weighted chance

Let's say I had a table full of records that I wanted to pull random records from. However, I want certain rows in that table to appear more often than others (and which ones vary by user). What's the ...
4
votes
3answers
9k views

How to retrieve field names from temporary table (SQL Server 2008)

I'm using SQL Server 2008. Say I create a temporary table like this one: create table #MyTempTable (col1 int,col2 varchar(10)) How can I retrieve the list of fields dynamically? I would like to see ...
4
votes
4answers
7k views

TSQL Define Temp Table (or table variable) Without Defining Schema?

Is there a way to define a temp table without defining it's schema up front?
4
votes
2answers
10k 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 ...
4
votes
5answers
10k views

Using temporary table in c#

I read an excel sheet into a datagrid.From there , I have managed to read the grid's rows into a DataTable object.The DataTable object has data because when I make equal a grid's datasource to that ...
3
votes
2answers
38 views

View MySQL Temporary Table - Not in session

I currently have a script running and didn't think it would take so long to run, the script is modifying a temporary table. I know that temporary tables only exist for the current session, but is ...
3
votes
2answers
219 views

Is MySQL Temporary table a shared resource?

I have a MySQL stored procedure that uses a temporary table. Assume that my table name is 'temp' and I use it to store some middle data. It will create at the beginning of procedure, and will drop at ...
3
votes
2answers
142 views

What's the scoping rule for temporary tables within exec within stored procedures?

Compare the following stored procedures: CREATE PROCEDURE testProc1 AS SELECT * INTO #temp FROM information_schema.tables SELECT * FROM #temp GO CREATE PROCEDURE testProc2 AS ...
3
votes
2answers
180 views

Is it better to delete or declare new temp tables for SQL Stored Procedures?

I have a stored procedure with a few steps. Two of the steps require the use of a DECLARE TABLE but I do not require these tables at the same time. The tables both have 2 BIGINT columns and may have ...
3
votes
1answer
2k 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 ...
3
votes
1answer
562 views

is a mysql temporary table unique for each user accessing the script that creates it…?

While looking for a way to temporarily save the search results when a user searches for a hotel free between particular dates i came across temporary tables. But certain questions are not answered ...
3
votes
1answer
699 views

Save Rails ActiveRecord objects into a temporary table (MySQL)

A user can import data into our website from a file. The data normally contains several hundred Items (Item < ActiveRecord::Base). Although the validations help, they cannot solve the problem of ...
3
votes
4answers
2k views

Table variable poor performance on insert in SQL Server Stored Procedure

We are experiencing performance problems using a table variable in a Stored Procedure. Here is what actually happens : DECLARE @tblTemp TABLE(iId_company INT) INSERT INTO @tblTemp(iId_company) ...
3
votes
3answers
475 views

What is the difference between TEMPORARY TABLE and TABLE VARIABLE in SQL 2008?

What is the difference between: CREATE TABLE #temp ( [ID] INT) INSERT INTO #temp SELECT ... and DECLARE @temp TABLE ( [ID] INT) INSERT @temp SELECT ... in SQL Server 2008?
3
votes
6answers
1k views

Can you define “literal” tables in SQL?

Is there any SQL subquery syntax that lets you define, literally, a temporary table? For example, something like SELECT MAX(count) AS max, COUNT(*) AS count FROM ( (1 AS id, 7 AS count), ...
3
votes
5answers
12k views

What is the difference between a temporary table vs global temporary table in Oracle?

I have heard these two terms "temporary table" and "global temporary table" used pretty much in similar context. What is the difference between the two?
3
votes
1answer
759 views

How do I get the C# Query component to recognise columns returned data from a temporary table in a sql stored procedure

I've created a stored procedure similar to the one below (I'm using this cut down version to try and figure our the problem). CREATE PROCEDURE bsp_testStoredProc AS BEGIN CREATE TABLE #tmpFiles ( ...
3
votes
4answers
4k views

DBCC CHECKIDENT on a temporary table throwing permissions error for wrong user

I'm logged into a SQL Server 2005 database as a non-sa user, 'bhk', that is a member of the 'public' server role only. The following code tries to execute within a stored procedure called by user ...
2
votes
4answers
73 views

Global Temp Tables - SQL Server vs Oracle

I am using Oracle 11g Global Temporary Tables as I need a solution where I can add rows to a temporary table for a join, and I want only the rows added to the temp table for the Oracle ...
2
votes
2answers
149 views

C# Insert into temp table

I have a temporary table #PORTAL_PRODUTOS, on sql manager I can insert values into it but when I try to use C# it returns me a error saying there is no #PORTAL_PRODUTOS object. My code string ...
2
votes
4answers
115 views

Alternative for a MySQL temporary table in Oracle

I noticed that the concept of temporary tables in these two systems is different, and I have a musing.. I have the following scenario in MySQL: Drop temporary table 'a' if exists Create temporary ...
2
votes
2answers
256 views

SQL Server Split And Table Insert

I want to do the following using SQL Server 2005. Create a stored procedure that takes a varchar() comma "," delimited param Split / Explode the varchar() param and insert the values in a temporary ...
2
votes
1answer
146 views

What are the use cases for temporary tables in SQL database systems?

what are the main purposes for which temporary tables are used? I want to know the practical and commercial uses of temporary tables in actual softwares working in small and large scale companies.
2
votes
1answer
620 views

How to use temporary table or view in Hibernate?

I would like to use temporary table in my HQL query, can I do it? P.S. I do know there are some hacks with creating your own dialect, but I don't want to do that, but I can create view for that ...
2
votes
4answers
345 views

Load data in a Global Temporary Table

I have two different Oracle sessions ("session A" and "session B") on the same Oracle user. A Global Temporary Table is populated, in "session A", with about 320,000 records. How can I quickly ...
2
votes
2answers
254 views

How to design usage of Global temp table for a multi-user environment? (or alternatives)

I need to create a temporary table in one of my stored procedures. The data to be inserted into the temp table is derived from a dynamic pivot query - hence I am tied to dynamic sql. So it becomes ...
2
votes
4answers
503 views

Why can I not reuse temp tables in T-SQL?

Here's some sample code: if object_id('tempdb..#TempList') is not null drop table #TempList create table #TempList ( ID int, Name varchar(20) ) insert into #TempList values (1, 'Alpha') ...
2
votes
1answer
299 views

grant select for temporary table in MySQL

I have a MySQL DB with a user that has access only a few tables. This user has been granted CREATE TEMPORARY TABLES for this database and by watching the query logs, I can see them create a temporary ...
2
votes
2answers
180 views

How is a stored procedure processed by Sql Server and .Net

I have been using a stored procedure for more than 1.5 years. But I've never considered how data is retrieved from the UI or within another stored procedure. When I write a simple stored procedure. ...
2
votes
2answers
549 views

Micosoft SQL Server 2005 check if temporary table empty

Is there a fast/efficiency way to check if a table is empty? DECLARE @StartEndTimes TABLE ( id bigint, StartTime datetime, EndTime datetime ) IF @StartEndTimes IS NOT NULL
2
votes
2answers
331 views

Using “AS” in MySQL - not as aliases

I was kinda surprised when I saw following: CREATE TEMPORARY TABLE X (ID int) AS SELECT NumColumn FROM Table I have tried to google it but only found using this as alieases. What this use actually ...
2
votes
4answers
778 views

Is it possible to create a temp table on a linked server?

I'm doing some fairly complex queries against a remote linked server, and it would be useful to be able to store some information in temp tables and then perform joins against it - all with the remote ...
2
votes
1answer
962 views

How to create unique temporary tables in MySQL procedures?

I was creating a temporary table in my procedure, but I always got an error "table already exists". Then I tried to create a random name to avoid collision but I don't know enough about how to ...
2
votes
1answer
504 views

Can I CREATE TEMPORARY TABLE in SQLAlchemy without appending to Table._prefixes?

I'd like to create a temporary table in SQLAlchemy. I can build a CREATE TABLE statement with a TEMPORARY clause by calling table._prefixes.append('TEMPORARY') against a Table object, but that's less ...

1 2 3 4