<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Scotia Systems Blog &#187; SQL</title>
	<atom:link href="http://www.scotiasystems.com/blog/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scotiasystems.com/blog</link>
	<description>Web Design, SEO and IT Tips</description>
	<lastBuildDate>Fri, 03 Feb 2012 22:18:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Shrink a 2005 SQL Log File</title>
		<link>http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shrink-a-2005-sql-log-file</link>
		<comments>http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 10:20:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Hints and Tips]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.scotiasystems.com/blog/?p=254</guid>
		<description><![CDATA[Tweet If you have a 2005 SQL log file which is growing out of control &#8211; here are the steps needed to truncate it: In SQL Server Management Studio &#8211; start a new query: USE &#60;DB Name&#62; Go select * from sys.database_files This will give a list of all database files &#8211; you&#8217;re looking in [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.scotiasystems.com%2Fblog%2Fit-hints-and-tips%2Fshrink-a-2005-sql-log-file%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/"  data-text="Shrink a 2005 SQL Log File" data-count="horizontal">Tweet</a>
			</div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>If you have a 2005 SQL log file which is growing out of control &#8211; here are the steps needed to truncate it:</p>
<p>In SQL Server Management Studio &#8211; start a new query:</p>
<p>USE &lt;DB Name&gt;<br />
Go</p>
<p>select * from sys.database_files</p>
<p>This will give a list of all database files &#8211; you&#8217;re looking in the &#8220;name&#8221; column for the name of the log file you want to shrink.</p>
<p>In a new query:</p>
<p>USE &lt;DB Name&gt;<br />
Go</p>
<p>DBCC SHRINKFILE (&#8216;&lt;name from previous query&gt;&#8217;, 1)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scotiasystems.com/blog/it-hints-and-tips/shrink-a-2005-sql-log-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL/ASP Error : The user is not associated with a trusted SQL Server connection</title>
		<link>http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection</link>
		<comments>http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 11:08:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.scotiasystems.com/blog/?p=248</guid>
		<description><![CDATA[Tweet If you&#8217;re getting the error &#8220;The user is not associated with a trusted SQL Server connection&#8221; when an ASP script is attempting to connect to a SQL DB &#8211; check to see if you have SQL and Windows Authentication set under the security settings for the database.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.scotiasystems.com%2Fblog%2Fsql%2Fsqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/"  data-text="SQL/ASP Error : The user is not associated with a trusted SQL Server connection" data-count="horizontal">Tweet</a>
			</div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>If you&#8217;re getting the error &#8220;The user is not associated with a trusted SQL Server connection&#8221; when an ASP script is attempting to connect to a SQL DB &#8211; check to see if you have SQL and Windows Authentication set under the security settings for the database.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scotiasystems.com/blog/sql/sqlasp-error-the-user-is-not-associated-with-a-trusted-sql-server-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

