<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5" -->
<rss version="0.92">
<channel>
	<title>Information Technology Knowledge Base</title>
	<link>http://www.itkb.org</link>
	<description></description>
	<lastBuildDate>Tue, 20 May 2008 21:08:50 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Enabling ssl on your apache2 with debian etch</title>
		<description><![CDATA[This is in now way the definitive guide to getting ssl to work on your host. This is what worked for me.
First you need to get openssl
apt-get install openssl ssl-cert
Generate a self signed cert. This will protect your traffic however it will give warning in the browser of the user. 
If you don&#8217;t want these [...]]]></description>
		<link>http://www.itkb.org/linux/enabling-ssl-on-your-apache2-with-debian-etch/40.html</link>
			</item>
	<item>
		<title>GIT Version system tutorial</title>
		<description><![CDATA[GIT Version system
Git is a distributed file versioning system. It was initially created by Linus Torvalds. Linus is better known for the creation of linux.
This is some quick guide on getting started with GIT for people with a windows desktop and a linux server.
Download the windows GUI version of git from http://code.google.com/p/msysgit/downloads/list
Install it.
To create a [...]]]></description>
		<link>http://www.itkb.org/miscellaneous/git-version-system-tutorial/39.html</link>
			</item>
	<item>
		<title>Recursively removing .svn directories</title>
		<description><![CDATA[Use this command

find . -name .svn -print0 &#124; xargs -0 rm -rf

You could also use &#8220;svn export&#8221;&#8230;
]]></description>
		<link>http://www.itkb.org/miscellaneous/recursively-removing-svn-directories/38.html</link>
			</item>
	<item>
		<title>Time synchronizing in windows</title>
		<description><![CDATA[You can check the current time on your domain by typing in the following
net time
This gives me: Current time at \\s-dc1.mydomain.local is 3/31/2008 1:56 PM
To setup Time synchroniziation type in:
>net time /SETSNTP:\\s-dc1.mydomain.local
s-dc1.mydomain.local Local should be replaced with the servername where your time service is running. Now to check check what time server your pc uses [...]]]></description>
		<link>http://www.itkb.org/miscellaneous/time-synchronizing-in-windows/37.html</link>
			</item>
	<item>
		<title>ASP_0131 Disallowed_Parent_Path</title>
		<description><![CDATA[IIS 6 has by default parent paths disallowed. These settings are required to use relative paths in virtual includes.
Parent paths allow you to use &#8216;..&#8217; when browsing directories and MapPaths etc enabling files in the parent directory to be used.
To enable parent paths:
• Start the Internet Services Manager (Start - Programs - Administrative Tools - [...]]]></description>
		<link>http://www.itkb.org/miscellaneous/asp_0131-disallowed_parent_path/36.html</link>
			</item>
	<item>
		<title>Mass update sql job owners</title>
		<description><![CDATA[After a domain migration you might find yourself in a position where you have a whole bunch of jobs with dead domain accounts. Then you could use sql server management studio to update the job ownership one by one. Or you could make a script which updates it for you. The next script gives you [...]]]></description>
		<link>http://www.itkb.org/sql-server/tsql/mass-update-sql-job-owners/35.html</link>
			</item>
	<item>
		<title>Deleting huge amounts of records</title>
		<description><![CDATA[When you have to delete a whole bunch of records from a table which has to stay in use. Then you could do it with a cursor. but you can also do it with the following approach. Use top to limit the amount of records deleted and put the deletion in a loop.
Sample code: 
DECLARE @p [...]]]></description>
		<link>http://www.itkb.org/sql-server/tsql/deleting-huge-amounts-of-records/34.html</link>
			</item>
	<item>
		<title>Job from removed maintenance plan</title>
		<description><![CDATA[You removed a maintenance plan and it didn&#8217;t delete the job. You got the following error:
The DELETE statement conflicted with the REFERENCE constraint &#8220;FK_subplan_job_id&#8221;. The conflict occurred in database &#8220;msdb&#8221;, table &#8220;dbo.sysmaintplan_subplans&#8221;, column &#8216;job_id&#8217;.
The statement has been terminated. (.Net SqlClient Data Provider)
You can remove the job by executing the following code:
&#8211; Set @job_name to the [...]]]></description>
		<link>http://www.itkb.org/sql-server/tsql/job-from-removed-maintenance-plan/33.html</link>
			</item>
	<item>
		<title>Transaction log grows with Bulk Logged?</title>
		<description><![CDATA[When using the Bulk-Logged recovery model your server logs the bulk commands minimally, our so you think.  For  sql server to log minimally other criteria should be met!
First off the table should not be replicated. And when you do your bulk logged command you also need to lock the table.
SAMPLE
sp_tableoption target_table, 'table lock [...]]]></description>
		<link>http://www.itkb.org/sql-server/tsql/transaction-log-grows-with-bulk-logged/31.html</link>
			</item>
	<item>
		<title>Huge transaction log with sql server</title>
		<description><![CDATA[Your transaction log is huge and has free space.
So you want to shrink it and it shrinks very little. You can solve this by running following script.
USE your_db
GO
DBCC SHRINKFILE(your_log, 200)
BACKUP LOG your_db WITH TRUNCATE_ONLY
DBCC SHRINKFILE(your_log, 200)
WATCH OUT
The TRUNCATE_ONLY which we use and the NO_LOG options of the BACKUP LOG statement will be removed in a [...]]]></description>
		<link>http://www.itkb.org/sql-server/tsql/huge-transaction-log-with-sql-server/32.html</link>
			</item>
</channel>
</rss>
