1.How to check the backup file details if we do not have
access to that folder
2.how to check the backup file size without connecting to
the folder

Answers were Sorted based on User's Feedback



1.How to check the backup file details if we do not have access to that folder 2.how to check the..

Answer / basha

SELECT * FROM SYSFILES, run this query against the db to
which u have to find file size.

Is This Answer Correct ?    12 Yes 3 No

1.How to check the backup file details if we do not have access to that folder 2.how to check the..

Answer / pandian s

SELECT * FROM MSDB..BACKUPSET WHERE
Database_Name='<DatabaseName>'

Is This Answer Correct ?    1 Yes 1 No

1.How to check the backup file details if we do not have access to that folder 2.how to check the..

Answer / rajasethupathy

The back up details would have been stored in the system
table backupset of system database msdb. So we can get it
from there.

ex

use msdb
select * from backupset

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More SQL Server Interview Questions

Can I save my report as html, excel or word? : sql server management studio

1 Answers  


What is a filestream?

1 Answers  


How to convert numeric expression data types by assignment operations?

1 Answers  


What is difference between createstatement and preparedstatement?

1 Answers  


Why use triggers?

1 Answers  


Why do we backup Active Directory ?

1 Answers  


What is key set driven?

1 Answers  


What is 1nf 2nf and 3nf?

1 Answers  


What is default port number for sql server 2000?

1 Answers  


How the data stores in a page?

1 Answers  


List the types of recovery model available in sql server?

1 Answers  


How to download microsoft sql server 2005 express edition?

1 Answers  


Categories