Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
7k views

Deleting Global Temporary Tables (##tempTable) in SQL Server

Does SQL server automatically purge these out after a given length of inactivity or do I need to worry about purging them automatically? If so, how do I query for a list of tables to purge?
3
votes
2answers
19k views

Dynamically create temp table, insert into temp table, and then select

Basically i want to be able to dynamically create a temp table based off of an existing table, and then insert values into the temp table, and select the inserted values. i've got the part where i ...
2
votes
1answer
99 views

Sql Server:Creating Temp Table with dynamic coloum

I having a problem with my current situation,i search through any solution on the net but still i cant get it. Here the question. I have a bunch of sql statment need to execute on stored procedure by ...
1
vote
2answers
77 views

populating gridview from stored procedure which inside @tempTable

I have a project with c# and mssql, I want to populate my gridview with a stored procedure this procedure has a table declaration in it ( I need this @temptable for get some data from another ...
1
vote
1answer
738 views

Insert records if not exist SQL Server 2005

SQL Server 2005 Database. I have a temporary table with many records, these records are coming from an RSS feed and need to be inserted periodically. Some of the data will change, and some will remain ...
0
votes
1answer
22 views

Select Left(columnA,2) or right(columnA,1)

Is there a way in MySql to use an either or in a select column. For instance select left(columnA,2) or right(columnA,1) as columnAlias, sum(columnB) from table where ((left(columnA,2) in ...
0
votes
3answers
124 views

Execute sp_executeSql for select…into #table but Cant Select out Temp Table Data

Is me again, I try to select...into a temp Table Call #TempTable in sp_Executedsql. I not so sure thats its successfully inserted or not but there Messages there written (359 row(s) affected) that ...
0
votes
2answers
120 views

Trim All columns in a temp table and Select data

Got a quick question. I first select a dataset INTO a temp table. The data contained in the columns of the temp table, contains extra spaces in them. Many columns exist with extra spaces. So, I ...
0
votes
0answers
25 views

do I have to mind about the cache rebuild with TEMPTABLE MySQL views?

I have a query that uses many string functions for logging in users. it runs slowly and we need to improve its performance. I cannot optimize the table structure, but I thought of making it faster by ...
0
votes
4answers
370 views

Can we return temporary table from function instead of table variable?

I have a function...in which I have return type as table variable... But performance will be increased if we use temp tables..as we have more data.
0
votes
2answers
577 views

Loading Temp Table in SSIS from source on differenct Server

How can i Load Temptable on Server B by reading data from Server A in Dataflow task.