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

Does hive support indexing?

0 Answers  


What are the types of subquery?

0 Answers  


Please differentiate between a local and a global temporary table?

0 Answers  


what is joins please explain breffly ??

1 Answers   Adaequare, TCS,


What is an extended Stored Procedure?

1 Answers  






What is primary key index?

0 Answers  


What is the name of the system variable that returns the number of rows affected by a SQL statement?

0 Answers   HCL,


Explain what is row_number function?

0 Answers  


What is the difference between varchar and varchar types?

0 Answers  


Write a query for primary key constraint with identity key word?

0 Answers   MindCracker,


What is normalization? Explain its different types?

0 Answers   GE, Maveric,


Tell me what are cursors and when they are useful?

0 Answers  


Categories