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 ...
4
votes
3answers
106 views
Do CTEs use any space in tempdb?
I've tried googling, but maybe it's the keywords I used, I have not been able to find a straightforward answer.
So the question is simple and straight forward. Do CTEs use any space in tempdb or ...
2
votes
2answers
210 views
Large query increases TempDB
I have huge query on my SQL 2005 Server. This have to be run once everyday but when this query runs temp db grows from 2GB to 48GB. What is the best way top optimize or find the reason why tempdb is ...
2
votes
3answers
565 views
Limiting SQL Temp DB Growth
I am facing a serious issue in my production server where the temp DB grow exponantialy. Is there any way we can recover the tempDB space without restarting the SQL service?
Cheers
Kannan.
0
votes
1answer
157 views
Configuration for ASPState database
Persistent ASP Session store can reside in either "tempdb" or "aspstate" database in SQL Server 2005. The sqlConnectionString parameter, in sessionState doesn't specify this (example below). How is ...
0
votes
2answers
392 views
Why does my tempdb reset permissions when the server is rebooted?
The past two times we have rebooted our sql server, our website has gone down. The reason appears to be because the tempdb is getting recreated and the ASPState user is losing permission to read/write ...
0
votes
3answers
794 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
1answer
108 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
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 ...