Tagged Questions

10
votes
5answers
4k views

SQL Server 2005 Memory Pressure and tempdb writes problem

We are having some issues with our production SQL Server. Server: Dual Quad Core Xeon 8 GB RAM Single RAID 10 Array Windows 2003 Server 64-bit SQL Server 2005 Standard 64-Bit There is about 250MB of ...
10
votes
4answers
11k views

SQL Server tempdb optimization tips for a new server?

I am planning a fresh installation of SQL Server 2005 on a new machine, which I have to order. I know that tempdb tuning is very important to the overall performance of the SQL Server instance. I've ...
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
2answers
466 views

SQL Server 2008 TempDB on other HD

I would like to make all stuff related to TempDB be stored on a separate HD. I have this new HD with a 500 Gb size as my E:\ drive. How would I use or move TempDB from one drive to another drive? ...
2
votes
2answers
503 views

SQL Server: Recovery model effect on TempDB

Does the recovery model of a database effect the size of the tempdb.mdf? We have a database which involves a lot of processing and bulk inserts. We are having problems with the tempdb file growing to ...
2
votes
3answers
729 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
4answers
39 views

SQL Server tempdb permanent tables use cases

Are there any use cases for permanent tables in tempdb database ? By permanent I mean not using # or ## but creating a real table in tempdb. I know that restarting the sql service will wipe the ...
1
vote
1answer
79 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
70 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
112 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
450 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
325 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.
1
vote
1answer
233 views

Size of SQL Server tempDB for Data Warehouse

Is there an expected size of tempDB for a Data Warehouse application. Is 10 gigs excessive? It's hit by frequent large queries. The Data Warehouse itself is 50 gigs. I'm using SQL Server 2000
1
vote
3answers
482 views

tempdb SQL Server locking

Our application runs alongside another application on a customers machine. We have put some efforts regarding avoiding long-running locks in tempdb since this obviously affects concurrency badly. The ...
0
votes
3answers
229 views

SQL Server 2008: A *Data File IO counter* for SQL Server

I make a stress test of the SQL Server 2008 and I want to know what is the data flow to tempdb because of usage of temporary tables and variables. The statistics is also shown in Activity Monitor: ...
0
votes
3answers
793 views

SQL Server 2005 TempDB Size

We are using SQL Server 2005. Recently SQL server 2005 crashed in our production environment due to large tempdb size. 1) what could be reason for large tempdb size? 2) Is there any way to look what ...
0
votes
3answers
417 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 ...
-1
votes
1answer
117 views

why Temporary tables not remove after completed their scope? [closed]

Possible Duplicate: Why are temporary tables not removed from tempdb in SQL Server? We have created Temporary tables in a stored procedure and while running the stored procedure the ...