Link to home
Start Free TrialLog in
Avatar of Zack
ZackFlag for Australia

asked on

SQL Server Log File Location

Heyas,

How would I find where a scheluded integrity check log file .ldf is stored in SQL Server 2005. Screenshots would be most helpful thank you.

Thank you

Avatar of Om Prakash
Om Prakash
Flag of India image

to find the location of log file, run the following query:
SELECT name, physical_name AS current_file_location FROM sys.master_files

Avatar of Zack

ASKER

That helps but how would I find the log file of specific scheduled task i.e. backup, intergrity, optimization.

Thank you.
Avatar of Zack

ASKER

By scheduled task I mean a task that appears in the SQL server agents > Jobs area.

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Alpesh Patel
Alpesh Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial