-
Quick script to rebuild full text search
Below is the script I learned while in Seattle attending PASS conference. Some guys from Microsoft helped me to rebuild full text index on some SharePoint databases I manage. select * from sys.fulltext_catalogs sp_configure ‘show adv’,0 reconfigure — Get the fulltext catalog name to rebuild select object_name(object_id), * from sys.fulltext_indexes select * from docs where…
-
PASS Reports 20061116
-
At PASS conference in Seattle
-
Getting Started with PowerShell and SMO
Microsoft will introduce a new shell with the forthcoming release of Vista. It was code-named Monad initially. Later on it was referred to as MSH (Microsoft Shell). In April, it was officially named as PowerShell. In fact, PowerShell RC2 (Release Candidate 2) is available for download now. I’ve downloaded and played with RC2 and was…
-
Service broker and database mail
A couple of weeks ago, I set up database mail on one server, and verified that it worked. A few days ago, my friend called because the mail was not working for him. This is the message I got when ran sp_send_dbmail stored procedure: Msg 14650, Level 16, State 1, Procedure sp_send_dbmail, Line 68 Service…