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)
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)
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]”); // ,…
Searches for a text string in a file or files. FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] “string” [[drive:][path]filename[ …]] /V Displays all lines NOT containing the specified string. /C Displays only the count of lines containing the string. /N Displays…
List local/remote socket and PID for all TCP connections in “Established” state: netstat -ano | find /i “established” List local/remote socket for all TCP connections in “Established” state (sometimes you get more than above): netstat -an | find /i “established”…
I cam across two amazing article the other day detailing how to do some great stuff from the windows command line. synjunkie knows his shit: Command-Line-Ninjitsu Command-Line Kung Fu I stumbled upon it because I was about to format a…
Howto Backup your Bitnami Instance to a Remote Site for Free What you’ll need 1. Install dropbox to c:\My Dropbox 2. The names of the services bitnami uses (from command line type net start to get list of services) 3.…
[Mercury][SQLServer JDBC Driver][SQLServer]Login failed for user ‘td’ Basically this error means that the password that quality center is trying to use for user ‘td’ in your MSSQL database doesn’t match whatever is in the database. How did I fix this?…
Problem: receiving this error on freebsd 6.1 (Can’t contact the database server: Can’t connect to local MySQL server through socket ” (2) (localhost)) To investigate run this command: # ps xa | grep mysqld If mysql is not running then…
Here’s a full walkthrough of how to get root on your HTC Aria.. UPDATE: simple click and forget it root tool – Credit goes to eugene373, attn1, |OP|, and modest_mandroid from xda-developers and this thread. I am reposting the…
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 */…