How we Resize table,temp table, database and log file size
in SQL Server 2005



How we Resize table,temp table, database and log file size in SQL Server 2005..

Answer / amrish kumar

USE DataBaseName
GO
SELECT name,physical_name,size,max_size
FROM sys.master_files
WHERE database_id = DB_ID('DataBaseName');
go

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More SQL Server Interview Questions

What is a rollup clause?

0 Answers  


What is the difference between value type and reference type?

0 Answers  


Explain what is lock escalation and what is its purpose?

0 Answers  


Name 3 ways to get an accurate count of the number of records in a table?

0 Answers  


How secure is sql server database?

0 Answers  






What are the type of joins? When do we use Outer and Self joins?

3 Answers  


what is database replication? : Sql server database administration

0 Answers  


Can we move Resource database from one path to another? If yes,How can we?

1 Answers   Wipro,


What is the use of @@spid?

0 Answers  


What are the disadvantages of using querystrings to send data from one page to another?

0 Answers  


What is ms sql server reporting services?

0 Answers  


Explain the difference between functions and stored procedures in sql server?

0 Answers  


Categories