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
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 |
Answer / pandian s
SELECT * FROM MSDB..BACKUPSET WHERE
Database_Name='<DatabaseName>'
Is This Answer Correct ? | 1 Yes | 1 No |
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 |
Does hive support indexing?
What are the types of subquery?
Please differentiate between a local and a global temporary table?
what is joins please explain breffly ??
What is an extended Stored Procedure?
What is primary key index?
What is the name of the system variable that returns the number of rows affected by a SQL statement?
Explain what is row_number function?
What is the difference between varchar and varchar types?
Write a query for primary key constraint with identity key word?
What is normalization? Explain its different types?
Tell me what are cursors and when they are useful?