<?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"
	>

<channel>
	<title>MayfieldGlobal</title>
	<atom:link href="http://blog.mayfieldglobal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mayfieldglobal.com</link>
	<description>Everything from operating systems, programming to web development and more.</description>
	<pubDate>Thu, 14 Aug 2008 16:11:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>How do I use PHP includes in my Web pages?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/19/how-do-i-use-php-includes-in-my-web-pages/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/19/how-do-i-use-php-includes-in-my-web-pages/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 09:08:07 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[includes]]></category>

		<category><![CDATA[site navigation]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/19/how-do-i-use-php-includes-in-my-web-pages/</guid>
		<description><![CDATA[PHP Includes allow you to easily reuse specific sections of code and content throughout your site. For example, many sites have a footer section where they display additional navigation links, ads, etc. Without PHP Includes (or other server side programming language), a developer would need to write the same code for this footer into each [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/19/how-do-i-use-php-includes-in-my-web-pages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is the SQL Server 2005 SQL syntax for dropping a column?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/16/what-is-the-sql-server-2005-sql-syntax-for-dropping-a-column/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/16/what-is-the-sql-server-2005-sql-syntax-for-dropping-a-column/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 21:04:30 +0000</pubDate>
		<dc:creator>x2ws</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/16/what-is-the-sql-server-2005-sql-syntax-for-dropping-a-column/</guid>
		<description><![CDATA[The following is the general syntax for deleting a column from a table:
ALTER TABLE table_name
DROP COLUMN column-name

]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/16/what-is-the-sql-server-2005-sql-syntax-for-dropping-a-column/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I connect my ASP.NET project to the AdventureWorksLT database?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/15/how-do-i-connect-my-aspnet-project-to-the-adventureworkslt-database/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/15/how-do-i-connect-my-aspnet-project-to-the-adventureworkslt-database/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 07:39:58 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[Visual Web Developer 2008 Express]]></category>

		<category><![CDATA[adventureworks]]></category>

		<category><![CDATA[sql server]]></category>

		<category><![CDATA[VWD 2008]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/15/how-do-i-connect-my-aspnet-project-to-the-adventureworkslt-database/</guid>
		<description><![CDATA[Establishing database connections to SQL Server 2005 is pretty straight forward, provided that you have the necessary components:

SQL Server 2005 Express
Visual Web Developer 2008 Express
Microsoft SQL Server Management Studio Express



Launch Visual Web Developer 2008 Express. If you have not already done so, create a web.config file in your .NET project by selecting: File &#62; New [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/15/how-do-i-connect-my-aspnet-project-to-the-adventureworkslt-database/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I receive the message: &#8220;&#60;username&#62; is not in the sudoers file. This incident will be reported.&#8221;. How do I enable sudo?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/13/i-receive-the-message-is-not-in-the-sudoers-file-this-incident-will-be-reported-how-do-i-enable-sudo/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/13/i-receive-the-message-is-not-in-the-sudoers-file-this-incident-will-be-reported-how-do-i-enable-sudo/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 19:04:57 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Shell]]></category>

		<category><![CDATA[root]]></category>

		<category><![CDATA[sudo]]></category>

		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/13/i-receive-the-message-is-not-in-the-sudoers-file-this-incident-will-be-reported-how-do-i-enable-sudo/</guid>
		<description><![CDATA[The sudo command allows users to perform tasks as another user - most commonly, the root user. Using sudo instead of su - has significant advantages. Most notably is that all operations performed with sudo are logged to: /var/log/secure.
To use the sudo command, the user (in this article, the user is ned) must be added [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/13/i-receive-the-message-is-not-in-the-sudoers-file-this-incident-will-be-reported-how-do-i-enable-sudo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I convert my MP3 files to the AAC format in iTunes (v7.5)?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-convert-my-mp3-files-to-the-aac-format-in-itunes-v75/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-convert-my-mp3-files-to-the-aac-format-in-itunes-v75/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 00:39:27 +0000</pubDate>
		<dc:creator>x2ws</dc:creator>
		
		<category><![CDATA[Windows Vista]]></category>

		<category><![CDATA[iTunes]]></category>

		<category><![CDATA[AAC]]></category>

		<category><![CDATA[convert]]></category>

		<category><![CDATA[MP3]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/11/how-do-i-convert-my-mp3-files-to-the-aac-format-in-itunes-v75/</guid>
		<description><![CDATA[Converting MP3 files to AAC format has many benefits but for me the main reason is much smaller files.

Ensure that you have added your MP3 files to the iTunes library.
Select the MP3 files you would like to convert then right-click on the selected files and select Convert Selection to AAC.
After the conversion is complete you may [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-convert-my-mp3-files-to-the-aac-format-in-itunes-v75/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I change the name of an existing user account in Linux?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-change-the-name-of-an-existing-user-account-in-linux/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-change-the-name-of-an-existing-user-account-in-linux/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 08:29:10 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Shell]]></category>

		<category><![CDATA[root]]></category>

		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/11/how-do-i-change-the-name-of-an-existing-user-account-in-linux/</guid>
		<description><![CDATA[
From the desktop, press Alt+F2 to launch the Run Application window.
Type:gnome-terminalthen press Enter. This will launch a user terminal (similar to Windows command prompt).
At the terminal prompt, type:suthen press Enter. When prompted, type the root (administrator) password then press: Enter. You now have a root terminal session.
At the root terminal, type:usermod -l new old where [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/11/how-do-i-change-the-name-of-an-existing-user-account-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I change the access permissions for a file or directory using chmod?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-change-the-access-permissions-for-a-file-or-directory-using-chmod/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-change-the-access-permissions-for-a-file-or-directory-using-chmod/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 07:13:39 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Shell]]></category>

		<category><![CDATA[chmod]]></category>

		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/10/how-do-i-change-the-access-permissions-for-a-file-or-directory-using-chmod/</guid>
		<description><![CDATA[The chmod (change mode) command is used to set file and directory permissions in Linux operating systems. The most common use of chmod is to grant or revoke read (r), write (w) or execute (x) permissions for an owner / user (u), a user group (g) or other / anonymous (o) users. Below is a [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-change-the-access-permissions-for-a-file-or-directory-using-chmod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I clear (onclick) and restore (onblur) the default value for a text field?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-clear-onclick-and-restore-onblur-the-default-value-for-a-text-field/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-clear-onclick-and-restore-onblur-the-default-value-for-a-text-field/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 06:15:13 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[onblur]]></category>

		<category><![CDATA[onclick]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/10/how-do-i-clear-onclick-and-restore-onblur-the-default-value-for-a-text-field/</guid>
		<description><![CDATA[Below is one example of how to clear the default text of a text field. In this example, the default text is: &#8220;Search Keywords&#8221;. If the user types text into the field, their entry will remain, allowing them the opportunity to click your &#8220;Search&#8221; button (or do whatever else is planned). However, if the user [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/10/how-do-i-clear-onclick-and-restore-onblur-the-default-value-for-a-text-field/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I concatenate characters or strings using SQL?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-concatenate-characters-or-strings-using-sql/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-concatenate-characters-or-strings-using-sql/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 09:53:28 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[T-SQL]]></category>

		<category><![CDATA[concatenate]]></category>

		<category><![CDATA[convert]]></category>

		<category><![CDATA[GETDATE]]></category>

		<category><![CDATA[sql server]]></category>

		<category><![CDATA[strings]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/09/how-do-i-concatenate-characters-or-strings-using-sql/</guid>
		<description><![CDATA[Concatenation (joining 2 or more characters or strings of the same data type) is accomplished using the &#8220;+&#8221; operator. For example, let&#8217;s say that I want to join the strings &#8220;Able&#8221; and &#8220;Baker&#8221;. To do so, I would simply write:
SELECT 'Windows' + 'Vista' AS OSName
Running this query would return:

OSName
------------
WindowsVista
OK so far, but what if you [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-concatenate-characters-or-strings-using-sql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I select only the date from a datetime data type?</title>
		<link>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-select-only-the-date-from-a-datetime-data-type/</link>
		<comments>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-select-only-the-date-from-a-datetime-data-type/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 09:48:20 +0000</pubDate>
		<dc:creator>westminster</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[T-SQL]]></category>

		<category><![CDATA[convert]]></category>

		<category><![CDATA[GETDATE]]></category>

		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://blog.mayfieldglobal.com/2008/01/09/how-do-i-select-only-the-date-from-a-datetime-data-type/</guid>
		<description><![CDATA[Selecting only the date portion from a datetime data type could be accomplished in a number of ways. One of the most convenient methods is to simply use CONVERT and one of the many style values.
SELECT GETDATE() AS MyDate
returns the default format:

MyDate
-----------------------
2008-01-06 19:39:15.410
However, buy using CONVERT and applying a particular style value, we are able [...]]]></description>
		<wfw:commentRss>http://blog.mayfieldglobal.com/2008/01/09/how-do-i-select-only-the-date-from-a-datetime-data-type/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
