How we Resize table,temp table, database and log file size
in SQL Server 2005
Answer Posted / 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 View All Answers
What is the syntax to execute the sys.dm_db_missing_index_details? : sql server database administration
How to loop through result set objects using mssql_fetch_array()?
What command would you use to create an index?
What is the fastest way to permanently delete a 1 million row table named customers?
Why use identity in sql server?
What is sql server profiler trace data file?
What do you understand by coalesce in sql server?
Which is the latest version of sql server and when it is released?
Can we run Reporting Services with SQL Server express edition, which is a free version of SQL Server?
how to avoid cursors? : Sql server database administration
You want to implement the one-to-many relationship while designing tables. How would you do it?
Explain how to maintain a fill factor in existing indexes?
Define full outer join in sql server joins?
Explain temporary table vs table variable by using cursor alternative?
What is bcp? When does it use?