<?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>Web Server Hosting Knowledge base &#187; SQL Dedicated Server Hosting</title>
	<atom:link href="http://www.bodhost.com/web-hosting/tag/sql-dedicated-server-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bodhost.com/web-hosting</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 06:13:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SQL Agent Jobs &#8211; Permissions</title>
		<link>http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/</link>
		<comments>http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:18:04 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[Dedicated Server Hosting]]></category>
		<category><![CDATA[vps hosting]]></category>
		<category><![CDATA[SQL Agent Jobs - Permissions]]></category>
		<category><![CDATA[SQL Dedicated Server Hosting]]></category>
		<category><![CDATA[Windows Dedicated Servers]]></category>

		<guid isPermaLink="false">http://www.bodhost.com/web-hosting/?p=966</guid>
		<description><![CDATA[SQLAgentReaderRole can solve the problems of giving rights to the users for administration of SQL Agent jobs. It is located in MSSQL Database and is a Database role. With the help of this it is possible to assign the user the permissions to see any SQL Agent job in the database server. However, this can [...]]]></description>
			<content:encoded><![CDATA[<p>SQLAgentReaderRole can solve the problems of giving rights to the users for administration of SQL Agent jobs. It is located in MSSQL Database and is a Database role. With the help of this it is possible to assign the user the permissions to see any SQL Agent job in the database server. However, this can also create some problems as the users will be able to see the jobs which are owned by other users. It is also possible for the users to check the history of the job. But the group of users will not be able to execute the job and you will have to add the user to SQLAgentReaderRole as a member. Follow the steps given below to do so :</p>
<p>Enter the following commands</p>
<p>use msdb</p>
<p>EXECUTE sp_addrolemember</p>
<p>@rolename = &#8216;SQLAgentReaderRole&#8217;,</p>
<p>@membername = &#8216;username&#8217;</p>
<p>There are 2 more SQL Agents role which are available in SQL Server 2005.</p>
<p>1) SQLAgentUserRole &#8211; This will allow the users to manage the jobs after they have created the job.</p>
<p>2) SQLAgentOperatorRole &#8211; The permissions assigned to SQLAgentUserRole are also assigned to SQLAgentOperatorRole. However, SQLAgentOperatorRole also provides permissions to the users to start the local jobs that they do not own.</p>
<p>Custom Code for viewing jobs</p>
<p>If you do not want to assign SQLAgentReaderRole then you have an option. Even if you do not have  SQL server 2005 then too you do not have to worry as there is an option. Below is the listing of jobs on the system with the custom system and also the details of the specific jobs. You can assign permissions to the users to view the jobs on the system according to you after you have created the procedure given below.</p>
<p>use master</p>
<p>go</p>
<p>CREATE PROCEDURE [dbo].[sp_ViewJobListing]</p>
<p>(</p>
<p>@JobName VARCHAR(255)=NULL</p>
<p>)</p>
<p>AS</p>
<p>BEGIN</p>
<p>IF OBJECT_ID(&#8216;tempdb..#Results&#8217;)&gt;0</p>
<p>DROP TABLE #Results</p>
<p>CREATE TABLE #Results</p>
<p>(</p>
<p>job_id UNIQUEIDENTIFIER NOT NULL,</p>
<p>last_run_date INT              NOT NULL,</p>
<p>last_run_time INT              NOT NULL,</p>
<p>next_run_date INT              NOT NULL,</p>
<p>next_run_time INT              NOT NULL,</p>
<p>next_run_schedule_id INT              NOT NULL,</p>
<p>requested_to_run INT              NOT NULL,</p>
<p>request_source INT              NOT NULL,</p>
<p>request_source_id SYSNAME   COLLATE DATABASE_DEFAULT NULL,</p>
<p>running  INT              NOT NULL,</p>
<p>current_step INT              NOT NULL,</p>
<p>current_retry_attempt  INT              NOT NULL,</p>
<p>job_state  INT              NOT NULL</p>
<p>)</p>
<p>DECLARE @JobID VARCHAR(100)</p>
<p>SELECT TOP 1 @JobID = job_ID FROM msdb.dbo.sysjobs</p>
<p>INSERT INTO #Results</p>
<p>EXECUTE master.dbo.xp_sqlagent_enum_jobs 1, @JobID</p>
<p>SELECT</p>
<p>s.Name,</p>
<p>CASE WHEN s.enabled = 0 THEN &#8216;No&#8217; ELSE &#8216;Yes&#8217; END AS Enabled,</p>
<p>CASE WHEN next_run_date &gt; 0 THEN &#8216;Yes&#8217; ELSE &#8216;No&#8217; END AS Scheduled,</p>
<p>sc.name AS Category,</p>
<p>current_step AS CurrentExecutionStep,</p>
<p>last_run_date,</p>
<p>next_run_date,</p>
<p>CASE WHEN xp.running = 0 THEN &#8216;Not Running&#8217; ELSE &#8216;Executing&#8230;&#8217; END AS Status,</p>
<p>ISNULL((</p>
<p>SELECT CASE WHEN run_status = 1 THEN &#8216;Succeeded&#8217; WHEN run_status = 3 THEN &#8216;Cancelled&#8217; WHEN run_status = 0 THEN &#8216;Failed&#8217; WHEN run_status IS NULL THEN &#8216;Unknown&#8217; END AS LastRunStatus</p>
<p>FROM</p>
<p>msdb..sysjobhistory sho</p>
<p>WHERE</p>
<p>sho.job_id = xp.job_id AND</p>
<p>sho.instance_id =</p>
<p>(</p>
<p>SELECT MAX(instance_id)</p>
<p>FROM msdb..sysjobhistory sj (NOLOCK)</p>
<p>WHERE sj.job_id = sho.job_id</p>
<p>)</p>
<p>) ,&#8217;Unknown&#8217;) AS LastRunStatus</p>
<p>FROM     #Results xp</p>
<p>INNER JOIN msdb..sysjobs s on xp.job_id = s.job_id</p>
<p>INNER JOIN msdb..syscategories sc on s.category_id = sc.category_id</p>
<p>WHERE</p>
<p>s.Name = ISNULL(@JobName, s.Name)</p>
<p>ORDER BY s.Name</p>
<p>IF @JobName IS NOT NULL</p>
<p>BEGIN</p>
<p>CREATE TABLE #JobHistory</p>
<p>(</p>
<p>StepID INT,</p>
<p>StepName SYSNAME,</p>
<p>Message NVARCHAR(1024),</p>
<p>RunStatus INT,</p>
<p>RunDate INT,</p>
<p>RunTime INT,</p>
<p>RunDuration INT,</p>
<p>operator_emailed NVARCHAR(20),</p>
<p>operator_netsent NVARCHAR(20),</p>
<p>operator_paged NVARCHAR(20)</p>
<p>)</p>
<p>INSERT INTO #JobHistory</p>
<p>SELECT</p>
<p>sjh.step_id,</p>
<p>sjh.step_name,</p>
<p>sjh.message,</p>
<p>sjh.run_status,</p>
<p>sjh.run_date,</p>
<p>sjh.run_time,</p>
<p>sjh.run_duration,</p>
<p>operator_emailed = so1.name,</p>
<p>operator_netsent = so2.name,</p>
<p>operator_paged = so3.name</p>
<p>FROM</p>
<p>msdb.dbo.sysjobhistory sjh</p>
<p>JOIN msdb.dbo.sysjobs sjj ON sjh.job_id = sjj.job_id</p>
<p>LEFT OUTER JOIN msdb.dbo.sysoperators so1  ON (sjh.operator_id_emailed = so1.id)</p>
<p>LEFT OUTER JOIN msdb.dbo.sysoperators so2  ON (sjh.operator_id_netsent = so2.id)</p>
<p>LEFT OUTER JOIN msdb.dbo.sysoperators so3  ON (sjh.operator_id_paged = so3.id),</p>
<p>msdb.dbo.sysjobs                 sj</p>
<p>WHERE</p>
<p>sjj.Name = @JobName and</p>
<p>(sj.job_id = sjh.job_id)</p>
<p>SELECT</p>
<p>StepID, StepName, Message, RunDate AS LastRunTime,</p>
<p>CASE RunStatus</p>
<p>WHEN 0 THEN &#8216;Failed&#8217;</p>
<p>WHEN 1 THEN &#8216;Succeeded&#8217;</p>
<p>WHEN 2 THEN &#8216;Retry (step only)&#8217;</p>
<p>WHEN 3 THEN &#8216;Canceled&#8217;</p>
<p>WHEN 4 THEN &#8216;In-progress message&#8217;</p>
<p>WHEN 5 THEN &#8216;Unknown&#8217;</p>
<p>END AS RunStatus</p>
<p>FROM #JobHistory</p>
<p>ORDER BY LastRunTime DESC, StepID ASC</p>
<p>END</p>
<p>END</p>
<p>GO</p>
<p>EXECUTE sp_ms_marksystemobject &#8216;sp_ViewJobListing&#8217;</p>
<p>Please note :</p>
<p>Make sure that you do not assign permissions to the users without being sure that you are assigning these permissions to the right one. As these permissions allow the user to to see the SQL Agent jobs on the database server and this can create problems for you if you assign these permissions to a wrong user.</p>
<p>Also, try not to give permissions for a user to check the job of the other user on the database server which can redure the risk of any problems in future.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Del.icio.us" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To digg" alt="Add 'SQL Agent Jobs &#8211; Permissions' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;u=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To FURL" alt="Add 'SQL Agent Jobs &#8211; Permissions' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To reddit" alt="Add 'SQL Agent Jobs &#8211; Permissions' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;version=0.7" title="Add 'SQL Agent Jobs &#8211; Permissions' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Feed Me Links" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Technorati" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;t=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Yahoo My Web" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;h=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Newsvine" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;description=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Ma.gnolia" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Stumble Upon" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Google Bookmarks" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Squidoo" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Blogmarks" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Bloglines" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;T=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Propeller" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Live-MSN" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To SlashDot" alt="Add 'SQL Agent Jobs &#8211; Permissions' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;t=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To FaceBook" alt="Add 'SQL Agent Jobs &#8211; Permissions' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions" title="Add 'SQL Agent Jobs &#8211; Permissions' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Mixx" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;c=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To MySpace" alt="Add 'SQL Agent Jobs &#8211; Permissions' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/&amp;title=SQL+Agent+Jobs+%26%238211%3B+Permissions&amp;srcURL=http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/" title="Add 'SQL Agent Jobs &#8211; Permissions' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Google Buzz" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'SQL Agent Jobs &#8211; Permissions' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'SQL Agent Jobs &#8211; Permissions' To Social Bookmarking Reloaded" alt="Add 'SQL Agent Jobs &#8211; Permissions' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=SQL+Agent+Jobs+%E2%80%93+Permissions+http%3A%2F%2Ftinyurl.com%2F2wkcho7" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=SQL+Agent+Jobs+%E2%80%93+Permissions+http%3A%2F%2Ftinyurl.com%2F2wkcho7" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/sql-agent-jobs-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why should you buy a Dedicated SQL Server?</title>
		<link>http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/</link>
		<comments>http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 22:46:30 +0000</pubDate>
		<dc:creator>bodhost</dc:creator>
				<category><![CDATA[SQL Dedicated Server]]></category>
		<category><![CDATA[Buy SQL Dedicated Server]]></category>
		<category><![CDATA[SQL Dedicated Server Hosting]]></category>
		<category><![CDATA[SQL Servers]]></category>

		<guid isPermaLink="false">http://www.bodhost.com/web-hosting/?p=669</guid>
		<description><![CDATA[Dedicated SQL Servers provide enhanced performance, reliability, and dedicated resources for your application to run. Dedicated SQL Servers are usually sold to big hosting companies, enterprises, and organizations needing advanced support and functionality. And With a full team of Database Administrators a Dedicated SQL Server will provide the buyer with both the robust database functionality [...]]]></description>
			<content:encoded><![CDATA[<p>Dedicated SQL Servers provide enhanced performance, reliability, and dedicated resources for your application to run.  Dedicated SQL Servers are usually sold to big hosting companies, enterprises, and organizations needing advanced support and functionality.  And With a full team of Database Administrators a Dedicated SQL Server will provide the buyer with both the robust database functionality and expert support you need.<br />
Dedicated SQL Servers are great because they are on separate hardware this improves security and top performance. And since Dedicated SQL Servers require intensive resources such as CPU and RAM it is best to buy them from a company that has been in business for a long time. </p>
<p>There are many Features of Dedicated SQL 2005 Servers. Such as follows : </p>
<p>    * DBO Rights to SQL 2005<br />
    * Stored procedure support<br />
    * Full text search<br />
    * T-SQL Enhancements<br />
    * XML Data Types<br />
    * Multiple Active Result Set (MARS)<br />
    * XQuery<br />
    * Triggers<br />
    * SQL Native Client<br />
    * SQL Disk Space Meter<br />
    * SQL Login Password Reset Tool<br />
    * Additional SQL 2005 Login Manager</p>
<p>Dedicated SQL servers reguire experts that have a broad range of experience in SQL Hosting administration, optimization, backups, restores, and implementation. Dedicated SQL Server 2000 exceeds dependability requirements and provides innovative capabilities that increase employee effectiveness, integrate heterogeneous IT structures and maximize capital and operating budgets. Dedicated SQL Server 2000 provides the enterprise data management platform your organization needs to adapt quickly in a rapidly changing environment. such as Notification Services. The result is the best overall business value available.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Social Bookmarking</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Del.icio.us"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Del.icio.us" alt="Add 'Why should you buy a Dedicated SQL Server?' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To digg"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Why should you buy a Dedicated SQL Server?' To digg" alt="Add 'Why should you buy a Dedicated SQL Server?' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;u=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To FURL"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Why should you buy a Dedicated SQL Server?' To FURL" alt="Add 'Why should you buy a Dedicated SQL Server?' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To reddit"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Why should you buy a Dedicated SQL Server?' To reddit" alt="Add 'Why should you buy a Dedicated SQL Server?' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;version=0.7" title="Add 'Why should you buy a Dedicated SQL Server?' To Feed Me Links"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Feed Me Links" alt="Add 'Why should you buy a Dedicated SQL Server?' To Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To Technorati"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Technorati" alt="Add 'Why should you buy a Dedicated SQL Server?' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;t=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Yahoo My Web"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Yahoo My Web" alt="Add 'Why should you buy a Dedicated SQL Server?' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;h=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Newsvine"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Newsvine" alt="Add 'Why should you buy a Dedicated SQL Server?' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;description=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Ma.gnolia"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Ma.gnolia" alt="Add 'Why should you buy a Dedicated SQL Server?' To Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Stumble Upon"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Stumble Upon" alt="Add 'Why should you buy a Dedicated SQL Server?' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Google Bookmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Google Bookmarks" alt="Add 'Why should you buy a Dedicated SQL Server?' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To Squidoo"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Squidoo" alt="Add 'Why should you buy a Dedicated SQL Server?' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Blogmarks"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bmarks.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Blogmarks" alt="Add 'Why should you buy a Dedicated SQL Server?' To Blogmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To Bloglines"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Bloglines" alt="Add 'Why should you buy a Dedicated SQL Server?' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;T=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Propeller"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Propeller" alt="Add 'Why should you buy a Dedicated SQL Server?' To Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Live-MSN"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Live-MSN" alt="Add 'Why should you buy a Dedicated SQL Server?' To Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To SlashDot"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Why should you buy a Dedicated SQL Server?' To SlashDot" alt="Add 'Why should you buy a Dedicated SQL Server?' To SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;t=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To FaceBook"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Why should you buy a Dedicated SQL Server?' To FaceBook" alt="Add 'Why should you buy a Dedicated SQL Server?' To FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mixx.com/submit?page_url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F" title="Add 'Why should you buy a Dedicated SQL Server?' To Mixx"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/mixx.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Mixx" alt="Add 'Why should you buy a Dedicated SQL Server?' To Mixx" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;c=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To MySpace"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Add 'Why should you buy a Dedicated SQL Server?' To MySpace" alt="Add 'Why should you buy a Dedicated SQL Server?' To MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/&amp;title=Why+should+you+buy+a+Dedicated+SQL+Server%3F&amp;srcURL=http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/" title="Add 'Why should you buy a Dedicated SQL Server?' To Google Buzz"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Google Buzz" alt="Add 'Why should you buy a Dedicated SQL Server?' To Google Buzz" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://valent-blog.eu/social-bookmarking-reloaded/" title="Add 'Why should you buy a Dedicated SQL Server?' To Social Bookmarking Reloaded"><img src="http://www.bodhost.com/web-hosting/wp-content/plugins/social-bookmarking-reloaded/sbr.png" title="Add 'Why should you buy a Dedicated SQL Server?' To Social Bookmarking Reloaded" alt="Add 'Why should you buy a Dedicated SQL Server?' To Social Bookmarking Reloaded" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/home/?status=Why+should+you+buy+a+Dedicated+SQL+Server%3F+http%3A%2F%2Ftinyurl.com%2F44qvp5t" title="Post to Twitter"><img class="nothumb" src="http://www.bodhost.com/web-hosting/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/home/?status=Why+should+you+buy+a+Dedicated+SQL+Server%3F+http%3A%2F%2Ftinyurl.com%2F44qvp5t" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bodhost.com/web-hosting/why-should-you-buy-a-dedicated-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

