August 29, 2006 at 2:12 am
where in sql server 2005 ( and 2000 for that matter) do i find the path to the location where backups are placed (.bak files)
August 29, 2006 at 7:36 am
Program Files Microsoft SQL Server MSSQL data backup.
August 29, 2006 at 8:00 am
SQL2005 :
declare
@DefaultBackupDirectory nvarchar(512)
exec
master.dbo.xp_instance_regread N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer',N'BackupDirectory', @DefaultBackupDirectory OUTPUT
print @DefaultBackupDirectory
-- and
exec sp_helpdevice
and check your backup-jobs / maintenance-plans to see where they put the files.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply