<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.orcsweb.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>csjpark</title><link>http://blogs.orcsweb.com/carol/default.aspx</link><description>notes from ow</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.2)</generator><item><title>Telnet Connection Tests</title><link>http://blogs.orcsweb.com/carol/archive/2006/10/07/Telnet-Connection-Tests.aspx</link><pubDate>Sat, 07 Oct 2006 04:24:00 GMT</pubDate><guid isPermaLink="false">2330e3f2-49bd-42cb-a16c-a9380a6a6a02:92</guid><dc:creator>Carol</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.orcsweb.com/carol/comments/92.aspx</comments><wfw:commentRss>http://blogs.orcsweb.com/carol/commentrss.aspx?PostID=92</wfw:commentRss><description>&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;</description></item><item><title>Stored Procedures - created automatically</title><link>http://blogs.orcsweb.com/carol/archive/2006/10/07/Stored-Procedures-_2D00_-created-automatically.aspx</link><pubDate>Sat, 07 Oct 2006 04:17:00 GMT</pubDate><guid isPermaLink="false">2330e3f2-49bd-42cb-a16c-a9380a6a6a02:91</guid><dc:creator>Carol</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.orcsweb.com/carol/comments/91.aspx</comments><wfw:commentRss>http://blogs.orcsweb.com/carol/commentrss.aspx?PostID=91</wfw:commentRss><description>&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;</description></item><item><title>Slow or non-responsive databases</title><link>http://blogs.orcsweb.com/carol/archive/2006/10/07/Slow-or-non_2D00_responsive-databases.aspx</link><pubDate>Sat, 07 Oct 2006 04:10:00 GMT</pubDate><guid isPermaLink="false">2330e3f2-49bd-42cb-a16c-a9380a6a6a02:90</guid><dc:creator>Carol</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.orcsweb.com/carol/comments/90.aspx</comments><wfw:commentRss>http://blogs.orcsweb.com/carol/commentrss.aspx?PostID=90</wfw:commentRss><description>&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;</description></item><item><title>Partial Trust components - ASP.Net 2.0</title><link>http://blogs.orcsweb.com/carol/archive/2006/09/19/Partial-Trust-components-_2D00_-ASP.Net-2.0.aspx</link><pubDate>Tue, 19 Sep 2006 06:04:00 GMT</pubDate><guid isPermaLink="false">2330e3f2-49bd-42cb-a16c-a9380a6a6a02:55</guid><dc:creator>Carol</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.orcsweb.com/carol/comments/55.aspx</comments><wfw:commentRss>http://blogs.orcsweb.com/carol/commentrss.aspx?PostID=55</wfw:commentRss><description>&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;</description></item></channel></rss>