Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
9answers
45k views

SQL Server: Is it possible to insert into two tables at the same time?

My database contains three tables called Object_Table, Data_Table and Link_Table. The link table just contains two columns, the identity of an object record and an identity of a data record. I want ...
5
votes
3answers
466 views

get the columns of a Temp table in sybase

Is there a way to get the list of columns of a temporary table in sybase? suppose I have a table called #mytable select count (*) from tempdb..#mytable return 145 to say there are 145 rows in this ...
5
votes
5answers
2k views

life span of temp table

I have the following procedure: CREATE PROCEDURE foo () SELECT * FROM fooBar INTO TEMP tempTable; -- do something with tempTable here DROP TABLE tempTable; END PROCEDURE; What happens ...
3
votes
4answers
182 views

functional reason why stored procedures don't support INSERT/EXECUTE INTO?

In SQL Server, there's no way to create a temp table on the fly from the results of a stored procedure, ala: CREATE TABLE #temptable AS EXEC spMyStoredProc or EXEC spMyStoredProc INTO #temptable ...
2
votes
2answers
159 views

Use temp tables in SSIS packages

I am writing a basic file dump from one database to another. I am using SSIS 2008 and creating several packages to transform the data I have from a MSSQL 2010 database to a MYSQL 5.1 database. All ...
2
votes
1answer
36 views

MYSQL QUERY for Products and Variants

I was hoping I could get some help with a Query I am trying to figure out. Our online store needs to know when all variants of a product are at quantity zero so we can disable the product from ...
2
votes
2answers
197 views

Normal table or global temp table?

Me and another developer are discussing which type of table would be more appropriate for our task. It's basically going to be a cache that we're going to truncate at the end of the day. Personally, I ...
2
votes
6answers
228 views

Why would you Truncate immediately before Dropping a temp table?

I see some code where the author has truncated a temp table immediately before dropping the temp table. Is there a reason for doing this? TRUNCATE TABLE #Temp DROP TABLE #Temp
2
votes
1answer
61 views

Evaluation of CTEs in SQL Server 2005

I have a question about how MS SQL evaluates functions inside CTEs. A couple of searches didn't turn up any results related to this issue, but I apologize if this is common knowledge and I'm just ...
2
votes
2answers
186 views

Can I have index created on temp tables (#temp) which are created dynamically in a stored procedure?

I am creating temp tables (#temp_table) in my stored procedure. It is a huge table with large data. Then I am creating a index in the storeed procedure as it is required for faster query to the temp ...
2
votes
3answers
739 views

TempDB Log File Growth Using Global Temp Tables

This is really a two prong question. One, I'm experiencing a phenomenon where SQL server consumes a lot of tempDB log file space when using a global temp table while using a local temp table will ...
2
votes
2answers
1k views

Accessing TSQL created #temp tables from CLR stored procedure. Is it possible?

I have a TSQL Stored Procedure tsql__sp__A which does two things: (a) Creates a temp table #tempTable that has SELECT data from a complex SELECT query. (b) Calls a CLR managed Stored Procedure ...
1
vote
1answer
72 views

Sql Server: Select..Into #TempTable with variable assignment on Temp Table name

I have a question here.I better paste my code first SET @Sql = 'DECLARE @Date_From VARCHAR(10); DECLARE @Date_To VARCHAR(10); DECLARE @TempTable VARCHAR(500); SET ...
1
vote
2answers
211 views

PostgreSQL syntax error when using EXECUTE in Function

I'm trying to create a function which references a temporary table in PostgreSQL 8.4. Based on my research it seems the best way to do this is to use the EXECUTE command to execute my query from a ...
1
vote
2answers
82 views

Can creating a primary key on a #temp table increase proc speed?

If you create a primary key on a large #temp table, or perhaps a few other indexes, what are the potential speed benefits, and what are the potential slowdowns? Is it normally a good idea to this ...
1
vote
3answers
105 views

SQL “WITH” Performance and Temp Table (possible “Query Hint” to simplify)

Given the example queries below (Simplified examples only) DECLARE @DT int; SET @DT=20110717; -- yes this is an INT WITH LargeData AS ( SELECT * -- This is a MASSIVE table indexed on dt field ...
1
vote
2answers
374 views

Use of temp tables in SQLite databases

I was browsing through the source code for Mendeley for Android by Martin Eve and saw that Temp tables are created along with the main tables by calling replace on the tables with _id. For example on ...
1
vote
3answers
127 views

Permanent table, temp tables or php session?

My web app offers personalized recommendations. When a user starting to use it, about 1000+ rows are being inserted to one big recommendation table, correlating with other tables in the database. ...
1
vote
2answers
429 views

Using a temp table between stored procedures in SQL Server 2008

I currently have a main stored procedure calling many stored procedures: Main --| --| --| > Exec Pre-processing SP (create and populate #temp table) --| --| > Exec ...
1
vote
1answer
309 views

Optimal MySQL temporary tables (memory tables) configuration?

First of all, I am new to optimizing mysql. The fact is that I have in my web application (around 400 queries per second), a query that uses a GROUP BY that i can“t avoid and that is the cause of ...
1
vote
2answers
407 views

Scope of Derived Tables in SQL Server

I've been looking into SQL recently and exploring a bit. in regards to Temp Tables I have discovered 3 different temp table types: 1) CREATE TABLE #TempTable 2) DECLARE TABLE @TempTable 3) SELECT * ...
1
vote
1answer
103 views

SQL Temp Tables & Replication

I have had an issue with our replication process and would like to salvage some data. I have a process in place where I will connect to each subscriber before flagging them for reinitialization and I ...
1
vote
2answers
1k views

DB2 Temp Tables: Not storing or not retrieving information

I'm an MSSQL guy, but I'm working on a DB2 query that needs to create a temp table, insert into it, and do stuff with it. As a much-shortened test, I'm using the following query, which is providing ...
0
votes
1answer
74 views

PostgreSQL dump Temp table

I created a temp table in my PostgreSQL DB using the following query SELECT * INTO TEMP TABLE tempdata FROM data WHERE id=2004; Now I want to create a backup of this temp table tempdata. So i use ...
0
votes
1answer
87 views

Ruby dynamically tied to table

I've got a huge monster of a database (Okay that's not quite true, but there are over 8 million records in one product table).. This table is fed by 13 suppliers. Even with the best indexing I could ...
0
votes
1answer
27 views

Where to store temp data during replication?

I've just started playing around with Replicating our system and am not sure how best to handle this issue. I want to filter data, but its not as easy as "where columnName = 'abc'". So I'm writing a ...
0
votes
2answers
57 views

Error in SQL Server 2005 Syntax

Here is the SQL: CREATE TABLE dbo.TmpFeesToRules1(Name varchar, LookupId int) INSERT INTO dbo.TmpFeesToRules1(Name, LookupId) SELECT DISTINCT Name, 0 FROM Lending.Fee UNION SELECT DISTINCT Name, 0 ...
0
votes
1answer
77 views

lock down view to be uneditable

I am building a database that contains public, private(limited to internal) and confidential data (limited to very few). It has very specific requirements that the security of the the data is managed ...
0
votes
3answers
4k views

Using openrowset to read an Excel file into a temp table; how do I reference that table?

I'm trying to write a stored procedure that will read an Excel file into a temp table, then massage some of the data in that table, then insert selected rows from that table into a permanent table. ...
0
votes
7answers
156 views

SQL Server 2005 error

Why can't you do this and is there are work around? You get this error. Msg 2714, Level 16, State 1, Line 13 There is already an object named '#temptable' in the database. declare @x int set @x = ...