<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.orcsweb.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">csjpark</title><subtitle type="html">notes from ow</subtitle><id>http://blogs.orcsweb.com/carol/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.orcsweb.com/carol/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.orcsweb.com/carol/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.61129.2">Community Server</generator><updated>2006-09-19T02:04:00Z</updated><entry><title>Telnet Connection Tests</title><link rel="alternate" type="text/html" href="http://blogs.orcsweb.com/carol/archive/2006/10/07/Telnet-Connection-Tests.aspx" /><id>http://blogs.orcsweb.com/carol/archive/2006/10/07/Telnet-Connection-Tests.aspx</id><published>2006-10-07T04:24:00Z</published><updated>2006-10-07T04:24:00Z</updated><content type="html">&lt;p&gt;If you are having issues connecting to a particular service, you can test using telnet to help isolate the problem.&amp;nbsp; For example, if you are having trouble sending email but&amp;nbsp;you can browse different websites, start by opening a&amp;nbsp;command prompt (Start &amp;gt; Run &amp;gt; Type cmd &amp;gt; Enter).&amp;nbsp; Then type &amp;#39;telnet yourdomain.com 25&amp;#39; without quotes.&amp;nbsp; If you get to the next black screen, you are all clear and should start troubleshooting other possibilities.&amp;nbsp; If you are not able to connect, then your ISP has most likely blocked port 25 (SMTP) at which you will need to try and find alternative methods sending email.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Here are some other common ports to test:&lt;/p&gt;&lt;p&gt;HTTP: 80&lt;br /&gt;HTTPS (SSLs): 443&lt;br /&gt;FTP: 21&lt;br /&gt;SMTP: 25&lt;br /&gt;POP3: 110&lt;br /&gt;SQL: 1433&lt;br /&gt;&lt;/p&gt;&lt;img src="http://blogs.orcsweb.com/aggbug.aspx?PostID=92" width="1" height="1"&gt;</content><author><name>Carol</name><uri>http://blogs.orcsweb.com/members/Carol.aspx</uri></author></entry><entry><title>Stored Procedures - created automatically</title><link rel="alternate" type="text/html" href="http://blogs.orcsweb.com/carol/archive/2006/10/07/Stored-Procedures-_2D00_-created-automatically.aspx" /><id>http://blogs.orcsweb.com/carol/archive/2006/10/07/Stored-Procedures-_2D00_-created-automatically.aspx</id><published>2006-10-07T04:17:00Z</published><updated>2006-10-07T04:17:00Z</updated><content type="html">&lt;p&gt;When using certain SQL tools, some stored procedures like dt_* are created automatically.&amp;nbsp; These are more annoying than harmful.&amp;nbsp; Here is a link to help you clear these SPs out or you can *try* and ignore them :)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;a href="http://databases.aspfaq.com/database/what-are-all-these-dt-stored-procedures-and-can-i-remove-them.html"&gt;http://databases.aspfaq.com/database/what-are-all-these-dt-stored-procedures-and-can-i-remove-them.html&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.orcsweb.com/aggbug.aspx?PostID=91" width="1" height="1"&gt;</content><author><name>Carol</name><uri>http://blogs.orcsweb.com/members/Carol.aspx</uri></author></entry><entry><title>Slow or non-responsive databases</title><link rel="alternate" type="text/html" href="http://blogs.orcsweb.com/carol/archive/2006/10/07/Slow-or-non_2D00_responsive-databases.aspx" /><id>http://blogs.orcsweb.com/carol/archive/2006/10/07/Slow-or-non_2D00_responsive-databases.aspx</id><published>2006-10-07T04:10:00Z</published><updated>2006-10-07T04:10:00Z</updated><content type="html">&lt;p&gt;If your database is acting sluggish, try sp_updatestats:&lt;/p&gt;&lt;p&gt;&amp;quot;&lt;strong&gt;sp_updatestats&lt;/strong&gt; effectively executes UPDATE STATISTICS, by specifying the ALL keyword, against all user-defined and internal tables in the database. &lt;strong&gt;sp_updatestats&lt;/strong&gt; displays messages that indicate its progress. When the update is completed, it reports that statistics have been updated for all tables. Statistics on disabled nonclustered indexes are also updated by &lt;strong&gt;sp_updatestats&lt;/strong&gt;. &lt;strong&gt;sp_updatestats&lt;/strong&gt; ignores tables with a disabled clustered index.&lt;/p&gt;&lt;p&gt;In SQL Server 2005, &lt;strong&gt;sp_updatestats&lt;/strong&gt; updates only those statistics that require updating based on the &lt;strong&gt;rowmodctr&lt;/strong&gt; information in the &lt;strong&gt;sys.sysindexes&lt;/strong&gt; compatibility view; therefore, preventing unnecessary updates of unchanged items.&lt;/p&gt;&lt;p&gt;For databases with a compatibility level below 90, executing &lt;strong&gt;sp_updatestats&lt;/strong&gt; resets the automatic UPDATE STATISTICS setting for all indexes and statistics on every table in the current database. For more information, see &lt;a href="http://msdn2.microsoft.com/en-us/library/ms188775.aspx"&gt;sp_autostats (Transact-SQL)&lt;/a&gt;. For databases with a compatibility level of 90 or higher, &lt;strong&gt;sp_updatestats&lt;/strong&gt; preserves the automatic UPDATE STATISTICS setting for any particular index or statistics.&amp;quot;&lt;/p&gt;&lt;p&gt;If this does not help, then try running the index tuning wizard.&amp;nbsp; &lt;/p&gt;&lt;img src="http://blogs.orcsweb.com/aggbug.aspx?PostID=90" width="1" height="1"&gt;</content><author><name>Carol</name><uri>http://blogs.orcsweb.com/members/Carol.aspx</uri></author></entry><entry><title>Partial Trust components - ASP.Net 2.0</title><link rel="alternate" type="text/html" href="http://blogs.orcsweb.com/carol/archive/2006/09/19/Partial-Trust-components-_2D00_-ASP.Net-2.0.aspx" /><id>http://blogs.orcsweb.com/carol/archive/2006/09/19/Partial-Trust-components-_2D00_-ASP.Net-2.0.aspx</id><published>2006-09-19T06:04:00Z</published><updated>2006-09-19T06:04:00Z</updated><content type="html">&lt;p&gt;Here are two steps that&amp;nbsp;you need to do to the component to make it run in a partial trust.&lt;/p&gt;&lt;p&gt;1. Remove strong naming as it&amp;#39;s not needed&lt;br /&gt;2. Add APTCA (AllowPartiallyTrustedCallerAttribute) to the component&lt;/p&gt;&lt;p&gt;You can adjust your component by using the two steps above, or contact your vendor to update their component to run in medium trust.&amp;nbsp; Leaving your component running in full trust leaves your site and the web server it is located on highly vulnerable to security holes.&amp;nbsp; &lt;/p&gt;&lt;p&gt;MS article regarding APTCA:&amp;nbsp; &lt;a href="http://msdn2.microsoft.com/en-us/library/d18a6dca.aspx"&gt;http://msdn2.microsoft.com/en-us/library/d18a6dca.aspx&lt;/a&gt;.&amp;nbsp; &lt;/p&gt;&lt;img src="http://blogs.orcsweb.com/aggbug.aspx?PostID=55" width="1" height="1"&gt;</content><author><name>Carol</name><uri>http://blogs.orcsweb.com/members/Carol.aspx</uri></author></entry></feed>