Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What are mdf,ndf,ldf files and how to see the data in those
files?

Answer Posted / arunyadav007

For reading the log files (.ldf) an undocumented system
stored procedure sp_readerrorlog is there. This SP allows
you to read the contents of the SQL Server error log files
directly from a query window and also allows you to search
for certain keywords when reading the error file. This is
not new to SQL Server 2005, but this tip discusses how this
works for SQL Server 2005.

This is a sample of the stored procedure for SQL Server
2005. You will see that when this gets called it calls an
extended stored procedure xp_readerrorlog.

This procedure takes four parameters:

Value of error log file you want to read: 0 = current, 1 =
Archive #1, 2 = Archive #2, etc...
Log file type: 1 or NULL = error log, 2 = SQL Agent log
Search string 1: String one you want to search for
Search string 2: String two you want to search for to
further refine the results

If you do not pass any parameters this will return the
contents of the current error log.

Example 1

EXEC sp_readerrorlog 6

This statement returns all of the rows from the 6th
archived error log.

Example 2

EXEC sp_readerrorlog 6, 1, '2005'

This returns just 8 rows wherever the value 2005 appears.
Example 3

EXEC sp_readerrorlog 6, 1, '2005', 'exec'

This returns only rows where the value '2005' and 'exec'
exist.

Even though sp_readerrolog accepts only 4 parameters, the
extended stored procedure accepts at least 7 parameters.

If this extended stored procedure is called directly the
parameters are as follows:

Value of error log file you want to read: 0 = current, 1 =
Archive #1, 2 = Archive #2, etc...
Log file type: 1 or NULL = error log, 2 = SQL Agent log
Search string 1: String one you want to search for
Search string 2: String two you want to search for to
further refine the results
?
?
Sort order for results: N'asc' = ascending, N'desc' =
descending

Is This Answer Correct ?    15 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of indexing?

1065


What type of locking occurs during the snapshot generation? : sql server replication

1320


What is the maximum size per database for sql server express?

1025


What triggers long term care?

1011


how to create “alternate row colour”?

146


What is failover clustering overview?

1064


What are key constraints?

960


What is the difference between cartesian product and cross join?

845


What are the different sql server versions?

962


How do you create a clustered index?

1035


What is wrong with sql server client libarary dll, ntwdblib.dll?

1030


How to download microsoft sql server 2005 express edition?

1029


How to download and install microsoft sql server management studio express?

1016


Explain cross join or cartesian product in sql?

876


What is data compression?

973