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 |
How to divide query output into multiple groups with the group by clause in ms sql server?
2) Consider a Table name A which has below records ID --- 5 5 5 5 5 Consider another table B which has below records ID -- 5 5 5 5 5 5 5 5 How many rows will be returned by each of the below queries a) select * from A inner join B on A.id = b.ID b) select * from A left join B on A.id = b.ID c) select * from A right join B on A.id = b.ID
What does executeupdate return?
What is the difference Between Sql-server 2000 & 2005
How to check parameter value in stored procedure sql server?
what is spatial nonclustered index
What is difference between table aliases and column aliases? Do they affect performance?
Explain rdbms?
Explain Trigger with an example?
What does dml stand for?
The external application that is executed in one of the tasks does not have a log file, but only a screen log. How can I save the data from the screen? : sql server management studio
What are the main differences between #temp tables and @table variables and which one is preferred?