I have heard about .sql file in SQL Server, But i don't know what it holds also is this file helpful for recovery purpose?
2 Answers
.sql file is the script file of sql server that contain the all command of particular database...
Including
- Create - Select - Insert - Store Processor - View
SQL, or Structured Query Language files contain SQL code used to modify the contents of a database. They may contain statements for creating or modifying database structures, insertions or updates, deletions.
Your result will be based on what your code in .SQL says.