Category Scripts

truncate sql log

First off, You CANNOT REVERT this command, so be sure you want to truncate the log! THE QUERY Instructions: Just replace with your DB BACKUP LOG WITH TRUNCATE_ONLY DBCC SHRINKDATABASE( ”, TRUNCATEONLY)

Send Email c#

Here’s how to send some email in c# using System.Net.Mail; using System.Net.Mime; using System.Net; ///place in a sub-routine or button try { MailMessage mail = new MailMessage(); SmtpClient client = new SmtpClient(“smtp.example.com”); MailMessage message = new MailMessage(“[email protected]”, “[email protected]”); // ,…

Howto: Make A pre Tag Wrap

Here’s how to make a pre tag wrap and have a nice grey background: pre {font-family: consolas, courier, monospace; font-size: 8pt; background:#cccccc; white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */…