Deepankar's profile.NET Rocks!!!PhotosBlogListsMore ![]() | Help |
|
No folders have been shared yet.
The log file for database is full. Back up the transaction log for the database to free up some log space.When dealing with MS SQL (not MY SQL) I’ve seen this error message before, but found little help on it out there.
The log file for database db_name is full. Back up the transaction log for the database to free up some log space.
Within the MS SQL Query Analyzer, do this:
backup log db_name with truncate_only go dbcc shrinkfile (db_name_log,0) go If anything, this post will be useful for me in the future when one of my MS SQL databases coughs up the error again Talking about Blogging: Design Your Own Weblog Application from Scratch Using ASP.NET, JavaScript, and OLE DB
Quote Blogging: Design Your Own Weblog Application from Scratch Using ASP.NET, JavaScript, and OLE DB Paint BallHave started working on a new site www.urbanpaintball.co.nz, very interesting game, where people hit each other with colored balls and pretend to be dead. Can you believe this game has national and international tournaments.
Will keep you posted more on this game as we progress with the site:) Convert a DataSet to a String VariableCoverts a DataTable into an Excel string. Use this method to save a datatable as an Excel file. It loops through each of the DataTables in the DataSet. There is also an option of whether to print the table headers (column names). public static string DataSetToString(DataSet dataSet, string title , bool printHeaders) // Start the excel worksheet for (int table = 0; table < dataSet.Tables.Count; table++) for (int iCol = 0; iCol < dataSet.Tables[table].Columns.Count; iCol++) for (int iRow = 0; iRow < dataSet.Tables[table].Rows.Count; iRow++) sb.Append("</table><table><tr><td></td></tr></table>"); |
.NET Rocks!!! |
|||||
|
|