Tagged Questions

3
votes
4answers
1k views

Persistent temp tables in SQL?

Is it possible to have a 'persistent' temp table in MS-SQL? What I mean is that I currently have a background task which generates a global temp table, which is used by a variety of other tasks ...
2
votes
4answers
106 views

Using a SQL #tempdb to databind() to ListBox

I am creating a webpage in which I have a series of pairs ListBoxes. In each pair there is a source (containing many options) in which you can then select an option (or multiple) and add it to the ...
2
votes
4answers
155 views

SQL Concatenation filling up tempDB

We are attempting to concatenate possibly thousands of rows of text in SQL with a single query. The query that we currently have looks like this: DECLARE @concatText NVARCHAR(MAX) SET @concatText = ...
2
votes
3answers
694 views

How tempDB works?

I am trying to understand the tempDB and following are the doubts popping in my mind. What is the lifetime of data in tempDB? Say a query is doing some Order By and uses tempDB for performing that. ...
1
vote
1answer
51 views

Large SQL query filling tempdb needs optimising

I have a rather large SQL query which the majority of which has come from a Business Objects SQL export which must be replicated on SQL Server for reporting purposes. The view is now complete and ...
1
vote
3answers
45 views

SQL cross join on temp table slow results

Have added the following code to my SQL query: (Note cut down version) DECLARE @rowType AS TABLE ( rowTypeLabel NVARCHAR (20)); INSERT INTO @rowType VALUES ('Cumulative'); INSERT INTO ...
1
vote
2answers
86 views

Failure SQL query insufficient disk space

Msg 1101, Level 17, State 10, Line 12 Could not allocate a new page for database 'TEMPDB' because of insufficient disk space in filegroup 'DEFAULT'. Create the necessary space by dropping objects ...
1
vote
1answer
359 views

Why are temporary tables not removed from tempdb in SQL Server?

I have created one stored procedure with 7 temporary tables and each temp table is dropped at the end of their own work. I am calling the SP from one web service and same web service we are used for ...
1
vote
1answer
304 views

TempDB one physical datafiles per CPU core in SQL Server 2000

I know it is recommended for SQL 2005 onward but does it also apply on SQL Server 2000? Any link for reference will also be appreciated.
0
votes
1answer
99 views

SQL 2005 tempdb growth and DTA syntax errors

I arrived at work to today to discover one of our SQL 2005 servers had run out of disk space. On examination the database causing the problem was tempdb. It seems to have grown from around 8mb to ...
0
votes
3answers
395 views

Local vs Global temp tables - When to use what?

I have a report which on execution connects to the database with my_report_user username. There can be many end-users of the report. And in each execution a new connection to the database will be made ...