what is maximum size of temp db?

Answers were Sorted based on User's Feedback



what is maximum size of temp db?..

Answer / senthilkumar

The syntax is : sp_helpdb 'tempdb'

db_size of a tempdb is 8.50 MB in sqlserver 2005.

Is This Answer Correct ?    10 Yes 5 No

what is maximum size of temp db?..

Answer / inampudi anil chowdary

the above two answers are wrong....... the max size of tem
db by default is -1. the main usage of tempdb is.if u run
a query the data will store in tempdb from tempdb we can
get output..but max size is -1;

Is This Answer Correct ?    6 Yes 2 No

what is maximum size of temp db?..

Answer / senthilkumar

Physical Properties of tempdb
The following table lists the initial configuration values of the tempdb data and log files. The sizes of these files may vary slightly for different editions of SQL Server.

File Logical name Physical name File growth
Primary data
tempdev
tempdb.mdf
Autogrow by 10 percent until the disk is full

Log
templog
templog.ldf
Autogrow by 10 percent to a maximum of 2 terabytes

Is This Answer Correct ?    2 Yes 0 No

what is maximum size of temp db?..

Answer / anamika

How to know the size of any database:
Syntax:
sp_helpdb 'tempdb'

db_size of temp db 38.56 MB.

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More SQL Server Interview Questions

Explain the first normal form(1nf)?

0 Answers  


What is user-defined inline table-valued function?

0 Answers  


You want to check the syntax of a complicated update sql statement without executing it. What command should you use?

0 Answers  


How to change the system date and time from SQL Plus Terminal ?

0 Answers   MCN Solutions,


What is Covering Indexes? Plz explain with example

3 Answers  






how do you determine the Load performance of any query in sql server {example how do u determine performance of a select stmnt which returns Dynamically many no of records ... some times 100,1000,10000 etc., }

0 Answers   HCL, Wipro,


How do you start single user mode in clustered installations?

0 Answers  


What is b tree index?

0 Answers  


What is the advantage of specifying WITH GRANT OPTION in the GRANT command?

2 Answers  


Explain the relational database management system (rdbms)?

0 Answers  


my problem is tempdb tempdb(dbname) 77752.95 MB(db size) 25345.03 MB (unallocated size) suppose i increased temp db size 10 gb . after increase the temp db showing 87 gb (dbsize) 25346.03MB(unallocated size)--unallocated size is showing same .please clarify.

1 Answers  


why would you call update statistics? : Sql server database administration

0 Answers  


Categories