<?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>Technical Notes&#187; SQL Server 2008 Backup</title>
	<atom:link href="http://technotes.towardsjob.com/tag/sql-server-2008-backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://technotes.towardsjob.com</link>
	<description>Technical Notes about Oracle, DotNet, Java, SQL Server, XML and UNIX</description>
	<lastBuildDate>Tue, 18 May 2010 01:45:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BACKUP Compression in SQL Server 2008</title>
		<link>http://technotes.towardsjob.com/sql-server/backup-compression-in-sql-server-2008/</link>
		<comments>http://technotes.towardsjob.com/sql-server/backup-compression-in-sql-server-2008/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:09:05 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL Server 2008 Backup]]></category>
		<category><![CDATA[sql server backup compression]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/sql-server/backup-compression-in-sql-server-2008/</guid>
		<description><![CDATA[Overview     SQL Server 2008 has come up with inbuilt compression for backups. Until the release of SQL Server 2005, compression was only available via third party backup software such as SQL Lite Speed, SQL Zip, etc. 
Exercise     Following is the simple example that demonstrates how to take [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/sql-server/automatic-backup-compression-in-sql-server-2008/' rel='bookmark' title='Permanent Link: Automatic Backup Compression in SQL Server 2008'>Automatic Backup Compression in SQL Server 2008</a> <small>From Long time SQL Server DBAs and Professionals are awaiting for a automatic compressed backup utility for SQL server, But It became true only with SQL Server 2008. For too long, if you wanted the benefit of compressed backups, you had to look at a third-party tool. Now, backup compression...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/' rel='bookmark' title='Permanent Link: Backup SQL Server Database using SSMS'>Backup SQL Server Database using SSMS</a> <small>Once you are started using SQL Server database for your application, you need to start taking database backups regularly. If it may be a development database or production database, you should take backups in a timely manner. Because if your information get loss, that brings you in loss. We cannot...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-t-sql/' rel='bookmark' title='Permanent Link: Backup SQL Server database using T-SQL'>Backup SQL Server database using T-SQL</a> <small>We are in thought of only DBA’s can take backup using T-SQL, But anyone can take backup and restore backup very easily with the help of T-SQL. we can backup an entire database, transaction log, or one or more file or filegroups with the help of T-SQL....</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/sql-server/backup-compression-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Split Backup Files while Backup and Restore SQL Server Database</title>
		<link>http://technotes.towardsjob.com/sql-server/split-backup-files-while-backup-and-restore-sql-server-database/</link>
		<comments>http://technotes.towardsjob.com/sql-server/split-backup-files-while-backup-and-restore-sql-server-database/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 11:54:00 +0000</pubDate>
		<dc:creator>Raju Sachin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[multi file backup]]></category>
		<category><![CDATA[split sql Backup]]></category>
		<category><![CDATA[SQL Server 2008 Backup]]></category>
		<category><![CDATA[SQL Server Backup]]></category>
		<category><![CDATA[SQL Server Database Backup]]></category>
		<category><![CDATA[TSQL Backup]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/sql-server/split-backup-files-while-backup-and-restore-sql-server-database/</guid>
		<description><![CDATA[Just a day before working on one of the projects, I had to take a backup of one database of 30 GB. My hard drive lacked sufficient space at that moment. Fortunately, I had two 16 GB USB Drives with me. Now, the question was how to take a backup in two equal sizes, each [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/sql-server/backup-and-restore-transaction-log-in-sql-server/' rel='bookmark' title='Permanent Link: Backup and Restore Transaction Log in SQL Server'>Backup and Restore Transaction Log in SQL Server</a> <small>This article covers the basics of Transaction Log backups and restores in SQL Server. The examples are from SQL Server 2008 however it applies to SQL Server 2005. If a database uses either the full or bulk-logged recovery model, you must back up the transaction log regularly enough to protect...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/how-to-verify-the-sql-server-backup/' rel='bookmark' title='Permanent Link: How to Verify the SQL Server Backup'>How to Verify the SQL Server Backup</a> <small>After taking backup, we need to verify the database backup to assure the SQL Server Backup is taken correctly. we can verify the database backup either by T-SQL statements or SSMS. The RESTORE VERIFYONLY command checks the backup to ensure it is complete and the entire backup is readable. The...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/' rel='bookmark' title='Permanent Link: Backup SQL Server Database using SSMS'>Backup SQL Server Database using SSMS</a> <small>Once you are started using SQL Server database for your application, you need to start taking database backups regularly. If it may be a development database or production database, you should take backups in a timely manner. Because if your information get loss, that brings you in loss. We cannot...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/sql-server/split-backup-files-while-backup-and-restore-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup SQL Server Database using SSMS</title>
		<link>http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/</link>
		<comments>http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 19:29:00 +0000</pubDate>
		<dc:creator>Raju Sachin</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database Backup]]></category>
		<category><![CDATA[SQL Server 2008 Backup]]></category>
		<category><![CDATA[SQL Server Backup]]></category>
		<category><![CDATA[SQL Server Database Backup]]></category>
		<category><![CDATA[SSMS]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/</guid>
		<description><![CDATA[Once you are started using SQL Server database for your application, you need to start taking database backups regularly. If it may be a development database or production database, you should take backups in a timely manner. Because if your information get loss, that brings you in loss. We cannot prevent the data loss due to disk failure, file corruption, code bugs, external factors, etc. 

The best practice is to take database backup and store it in an external media like tape drive and keep it in a safe place. The easiest way to take database backup is by using SQL Server Management Studio (SSMS).


Related posts:<ol><li><a href='http://technotes.towardsjob.com/sql-server/sql-server-2005-dba-checklist/' rel='bookmark' title='Permanent Link: SQL Server 2005 database DBA Checklist for database administrator'>SQL Server 2005 database DBA Checklist for database administrator</a> <small>This article provides SQL Server 2005 database DBA Checklist for database administrator. The objective is to provide Check list for database administrator Overcome existing database server issues like CPU Utilization more (95%), growth in transaction log Database Performance (CUP Utilization) SQL Server 2005 database is 64 bit, its basic feature...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/split-backup-files-while-backup-and-restore-sql-server-database/' rel='bookmark' title='Permanent Link: Split Backup Files while Backup and Restore SQL Server Database'>Split Backup Files while Backup and Restore SQL Server Database</a> <small>Just a day before working on one of the projects, I had to take a backup of one database of 30 GB. My hard drive lacked sufficient space at that moment. Fortunately, I had two 16 GB USB Drives with me. Now, the question was how to take a backup...</small></li>
<li><a href='http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-t-sql/' rel='bookmark' title='Permanent Link: Backup SQL Server database using T-SQL'>Backup SQL Server database using T-SQL</a> <small>We are in thought of only DBA’s can take backup using T-SQL, But anyone can take backup and restore backup very easily with the help of T-SQL. we can backup an entire database, transaction log, or one or more file or filegroups with the help of T-SQL....</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/sql-server/backup-sql-server-database-using-ssms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>