Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
1answer
2k views

SQL Server Tempdb LOG file growing

On a SQL Server 2000 system, I have a templog.ldf file that seems to grow without bound! But when I check, there are never any open transaction in the tempdb (using DBCC OPENTRAN), nor do I ever use ...
4
votes
3answers
83 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 ...
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
107 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
2answers
414 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
1answer
367 views

Why isn't SQL Server 2008 R2 using all available RAM?

We have an analytics database server running SQL 2008 R2 with 192 GB of physical RAM. However, we're noticing that during analytics process, the server only uses around 70 GB, but tempdb swells to ...
2
votes
2answers
489 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
2answers
196 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
552 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.
2
votes
3answers
695 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
57 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
47 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
87 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
361 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.
1
vote
3answers
149 views

TSQL updating large table with other from TEMPDB causes enormous grow

I have a custom import tool which bulk-insert the data in temp (421776 rows). After that the tool inserts unknown rows into the target table and updates existing rows based on a hash key(combination ...
1
vote
1answer
228 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
453 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 ...
1
vote
6answers
934 views

Sql Server 2000 - tempdb growing very large

We have a SQL Server 2000 production environment where suddenly (ie. the last 3 days) something has caused the tempdb data file to grow very large (45 gigs with a database which is only 10 gigs). ...
0
votes
1answer
27 views

sybase tempdb log segment filling

I have a Sybase ASE server that hangs every week or so, indicating tempdb log segment is full. I have tried everything. trunc log on chkpt is enabled and it works correctly resetting used_pages ...
0
votes
0answers
56 views

SQL Server's TempDB file manipulation or reading with Visual Studio

Is there a way to read the TempDB file with my OWn Visual Studio platform? I mean read the file or do a conversion of that file created with SQL and read with, lets say any code in Visual Studio? ...
0
votes
1answer
149 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
3answers
211 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
2answers
345 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
695 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
101 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
1answer
423 views

Sybase and tempdb

Im working with Sybase central - Adaptive Server Anywhere 9 and I want some examples in the use of de tempDB. How , for example can I insert some records in a temporary table ? I tried for example: ...
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 ...
-1
votes
1answer
98 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 ...