Tagged Questions

22
votes
9answers
48k 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
549 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 ...
2
votes
1answer
65 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
200 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 ...
1
vote
1answer
96 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
97 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
115 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
3answers
135 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
1answer
342 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
425 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
107 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
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 ...