<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2008 &#8211; Configure Database Mail &#8211; Send Email From SQL Database</title>
	<atom:link href="http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: priya</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57745</link>
		<dc:creator>priya</dc:creator>
		<pubDate>Thu, 19 Nov 2009 17:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57745</guid>
		<description>@Octavian
  Thanks for the reply.

Do you have any idea why the email is  not going through some time?. It works one day , next day it   fails. we have a bunch of jobs  and each send emails. some of the mails  have no problem but some have . this Database mail has been working  for about 2 years without any issues. all of a sudden this issue happened. (Relaying not allowed error..)  We have not changed anything  on the SQl server side. Do you think it is the problem with  third party  mail server?</description>
		<content:encoded><![CDATA[<p>@Octavian<br />
  Thanks for the reply.</p>
<p>Do you have any idea why the email is  not going through some time?. It works one day , next day it   fails. we have a bunch of jobs  and each send emails. some of the mails  have no problem but some have . this Database mail has been working  for about 2 years without any issues. all of a sudden this issue happened. (Relaying not allowed error..)  We have not changed anything  on the SQl server side. Do you think it is the problem with  third party  mail server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alicia Loughnane</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57741</link>
		<dc:creator>Alicia Loughnane</dc:creator>
		<pubDate>Thu, 19 Nov 2009 15:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57741</guid>
		<description>this worked like a charm and thank you for providing such a great breakdown on how to do this.  I have set up one of our servers without a hitch but another server, which is virtual gave me the following error:
*****************************************
The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2009-11-19T08:34:02). 
Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 ... 
Relaying denied. IP name possibly forged [10.1.
*****************************************

Is this because it is virtual or do you think there is something going on with the specific IP?</description>
		<content:encoded><![CDATA[<p>this worked like a charm and thank you for providing such a great breakdown on how to do this.  I have set up one of our servers without a hitch but another server, which is virtual gave me the following error:<br />
*****************************************<br />
The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2009-11-19T08:34:02).<br />
Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 &#8230;<br />
Relaying denied. IP name possibly forged [10.1.<br />
*****************************************</p>
<p>Is this because it is virtual or do you think there is something going on with the specific IP?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57569</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Fri, 13 Nov 2009 01:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57569</guid>
		<description>@katheesh kumar

STMP uses a port to send data from your computer to mail server. Just like SQL Server uses port 1433 (default).

STMP for gmail server is 587.

Default port for SMTP is 25. Usually in many companies they block all port that are not needed. It could be possible that port 25 has been unblocked and that is why you could send email through your office mail server and port 587 is blocked that is why you cannot send email using gmail server.

Solution, make exception in Firewall to unblock 587 Or Turn off firewall and test sending an email using gmail mail server, if it goes through. Then it is confirmed that problem is with Firewall blocking. Don&#039;t forget to turn on your Firewall after testing is completed.


~ IM.</description>
		<content:encoded><![CDATA[<p>@katheesh kumar</p>
<p>STMP uses a port to send data from your computer to mail server. Just like SQL Server uses port 1433 (default).</p>
<p>STMP for gmail server is 587.</p>
<p>Default port for SMTP is 25. Usually in many companies they block all port that are not needed. It could be possible that port 25 has been unblocked and that is why you could send email through your office mail server and port 587 is blocked that is why you cannot send email using gmail server.</p>
<p>Solution, make exception in Firewall to unblock 587 Or Turn off firewall and test sending an email using gmail mail server, if it goes through. Then it is confirmed that problem is with Firewall blocking. Don&#8217;t forget to turn on your Firewall after testing is completed.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Octavian</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57544</link>
		<dc:creator>Octavian</dc:creator>
		<pubDate>Thu, 12 Nov 2009 09:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57544</guid>
		<description>answers:

priya: 
yes, sql it is sending using an SMTP server; this is configured when creating the mail profile along with the accounts; these accounts are &quot;SMTP accounts&quot;, that means these they are used to send the email

katheesh kumar:
mail sending is restricted to local company accounts; in order to send email to outside you have to add the exceptions (external mail addresses) or make an automatic relay to forward the emails form the sql server</description>
		<content:encoded><![CDATA[<p>answers:</p>
<p>priya:<br />
yes, sql it is sending using an SMTP server; this is configured when creating the mail profile along with the accounts; these accounts are &#8220;SMTP accounts&#8221;, that means these they are used to send the email</p>
<p>katheesh kumar:<br />
mail sending is restricted to local company accounts; in order to send email to outside you have to add the exceptions (external mail addresses) or make an automatic relay to forward the emails form the sql server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: katheesh kumar</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57449</link>
		<dc:creator>katheesh kumar</dc:creator>
		<pubDate>Mon, 09 Nov 2009 07:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57449</guid>
		<description>i did all the configurations for gmail it did not work...

but works fine for mail company id and server name and with given port number</description>
		<content:encoded><![CDATA[<p>i did all the configurations for gmail it did not work&#8230;</p>
<p>but works fine for mail company id and server name and with given port number</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priya</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57300</link>
		<dc:creator>priya</dc:creator>
		<pubDate>Tue, 03 Nov 2009 16:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57300</guid>
		<description>Hi Pinal,
   I am adding these to the above post
I am using Sql server 2005,  
I  am sending  mails using  EXEC msdb.dbo.sp_send_dbmail

we don&#039;t have Exchange server. once we configured the database mail,  is it using  any SMTP sever?.   could you clarify how the mail works?  
we are using the  third party email server, Network solutions for our office mails.  
where do I  configure the  &quot;Relaying&quot;.. We don&#039;t have IIS  in the  sql server  machine

The mail works sometime , but sometimes it fails. Is this a network issue?</description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
   I am adding these to the above post<br />
I am using Sql server 2005,<br />
I  am sending  mails using  EXEC msdb.dbo.sp_send_dbmail</p>
<p>we don&#8217;t have Exchange server. once we configured the database mail,  is it using  any SMTP sever?.   could you clarify how the mail works?<br />
we are using the  third party email server, Network solutions for our office mails.<br />
where do I  configure the  &#8220;Relaying&#8221;.. We don&#8217;t have IIS  in the  sql server  machine</p>
<p>The mail works sometime , but sometimes it fails. Is this a network issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priya</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57298</link>
		<dc:creator>priya</dc:creator>
		<pubDate>Tue, 03 Nov 2009 15:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57298</guid>
		<description>Hey Pinal,
  i have two consecutive statements in the same procedure to send mail . it was working for almost  2years. all of a sudden  we are facing a problem. some time only  first mail is going through. second  mail fails with the reason .....Relaying not allowed&quot;. what went wrong? How do I solve this issue?. any help is appreciated

priya</description>
		<content:encoded><![CDATA[<p>Hey Pinal,<br />
  i have two consecutive statements in the same procedure to send mail . it was working for almost  2years. all of a sudden  we are facing a problem. some time only  first mail is going through. second  mail fails with the reason &#8230;..Relaying not allowed&#8221;. what went wrong? How do I solve this issue?. any help is appreciated</p>
<p>priya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ninad</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-57069</link>
		<dc:creator>Ninad</dc:creator>
		<pubDate>Tue, 27 Oct 2009 13:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-57069</guid>
		<description>Hey Pinal,

It&#039;s indeed a greate articale.
Good efforts, thanks a ton.


Ninad 
MCTS</description>
		<content:encoded><![CDATA[<p>Hey Pinal,</p>
<p>It&#8217;s indeed a greate articale.<br />
Good efforts, thanks a ton.</p>
<p>Ninad<br />
MCTS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandeep</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56855</link>
		<dc:creator>sandeep</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56855</guid>
		<description>Hi all, I have configured database mail and it is working well. 

   My query is is there any possibility to configure database mail on SQL server 2008 Express Edition. 

 Thanks</description>
		<content:encoded><![CDATA[<p>Hi all, I have configured database mail and it is working well. </p>
<p>   My query is is there any possibility to configure database mail on SQL server 2008 Express Edition. </p>
<p> Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56800</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Mon, 19 Oct 2009 23:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56800</guid>
		<description>@RamZan

Read this article,

http://articles.techrepublic.com.com/5100-10878_11-6164310.html#

Read : query result section.

Step 1: Write a sql statement, to send email, put you select statement in the same query and send the output of the query in the email.

~ IM.</description>
		<content:encoded><![CDATA[<p>@RamZan</p>
<p>Read this article,</p>
<p><a href="http://articles.techrepublic.com.com/5100-10878_11-6164310.html#" rel="nofollow">http://articles.techrepublic.com.com/5100-10878_11-6164310.html#</a></p>
<p>Read : query result section.</p>
<p>Step 1: Write a sql statement, to send email, put you select statement in the same query and send the output of the query in the email.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RamZan</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56782</link>
		<dc:creator>RamZan</dc:creator>
		<pubDate>Mon, 19 Oct 2009 05:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56782</guid>
		<description>Dear, its very very very helpful, now i can send some automated e-mail through sqlserver. 
but now my problem is i want to send the result of the qeury, i don&#039;t want to send plain, please let me know, how can i send the data which will be the result of my Select Statement.
example.
select buyername, address, credilimit from emp
where creditlimit &gt; 25,000.</description>
		<content:encoded><![CDATA[<p>Dear, its very very very helpful, now i can send some automated e-mail through sqlserver.<br />
but now my problem is i want to send the result of the qeury, i don&#8217;t want to send plain, please let me know, how can i send the data which will be the result of my Select Statement.<br />
example.<br />
select buyername, address, credilimit from emp<br />
where creditlimit &gt; 25,000.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56780</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Mon, 19 Oct 2009 02:40:30 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56780</guid>
		<description>@Pratik, 

Execute SSIS Package as a job, and schedule that job. 

And set a notification to that job, like if job fails then send an alert. Meaning when SSIS Packege will fail, job will fail and if job fails then you will get a notification email.

~ IM.</description>
		<content:encoded><![CDATA[<p>@Pratik, </p>
<p>Execute SSIS Package as a job, and schedule that job. </p>
<p>And set a notification to that job, like if job fails then send an alert. Meaning when SSIS Packege will fail, job will fail and if job fails then you will get a notification email.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pratik Solanki</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56778</link>
		<dc:creator>Pratik Solanki</dc:creator>
		<pubDate>Sun, 18 Oct 2009 23:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56778</guid>
		<description>Hi Pinal,

I want to send email when the SSIS Package fails due to any reason. If you know how achive this task then please let me know asap.

Thanks in advance
Pratik</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I want to send email when the SSIS Package fails due to any reason. If you know how achive this task then please let me know asap.</p>
<p>Thanks in advance<br />
Pratik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srinivas</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56700</link>
		<dc:creator>Srinivas</dc:creator>
		<pubDate>Wed, 14 Oct 2009 16:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56700</guid>
		<description>Thanks Imran..it worked for me.
Thansk a lot.</description>
		<content:encoded><![CDATA[<p>Thanks Imran..it worked for me.<br />
Thansk a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56679</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Wed, 14 Oct 2009 05:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56679</guid>
		<description>@srinivas reddy

Read this article, 

http://articles.techrepublic.com.com/5100-10878_11-6164310.html#

Read : query result section. 

Step 1: Write a sql statement, to send email, put you select statement in the same query and send the output of the query in the email. 

Step2: Now put this script in a job as one of the job step and then schedule this job to run at 10 PM. 


~ IM.</description>
		<content:encoded><![CDATA[<p>@srinivas reddy</p>
<p>Read this article, </p>
<p><a href="http://articles.techrepublic.com.com/5100-10878_11-6164310.html#" rel="nofollow">http://articles.techrepublic.com.com/5100-10878_11-6164310.html#</a></p>
<p>Read : query result section. </p>
<p>Step 1: Write a sql statement, to send email, put you select statement in the same query and send the output of the query in the email. </p>
<p>Step2: Now put this script in a job as one of the job step and then schedule this job to run at 10 PM. </p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srinivas Reddy</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56670</link>
		<dc:creator>Srinivas Reddy</dc:creator>
		<pubDate>Tue, 13 Oct 2009 16:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56670</guid>
		<description>Hi Imran &amp; Pinal,

I go the Database Mail setup correctly and able to send test mails to my email id. 
Now my question is in real time i hava a scenario it works like this.
Every day @10Pm i have to send an email to users. 
That email will consists of results for 5 columns from different tables using joins.
I like to know how to do this step by step. 
Do i have to create this using trigger, or stored procedure or jobs or alerts.I&#039;m totally confused.
and this is very urgent for me.
Please send me the reply asap.</description>
		<content:encoded><![CDATA[<p>Hi Imran &amp; Pinal,</p>
<p>I go the Database Mail setup correctly and able to send test mails to my email id.<br />
Now my question is in real time i hava a scenario it works like this.<br />
Every day @10Pm i have to send an email to users.<br />
That email will consists of results for 5 columns from different tables using joins.<br />
I like to know how to do this step by step.<br />
Do i have to create this using trigger, or stored procedure or jobs or alerts.I&#8217;m totally confused.<br />
and this is very urgent for me.<br />
Please send me the reply asap.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Narayanan Nagarajan</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56458</link>
		<dc:creator>Narayanan Nagarajan</dc:creator>
		<pubDate>Tue, 06 Oct 2009 06:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56458</guid>
		<description>Hi Pinal

When i Right click on the database mail i am not able to see the option to configure database mail please help me</description>
		<content:encoded><![CDATA[<p>Hi Pinal</p>
<p>When i Right click on the database mail i am not able to see the option to configure database mail please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56181</link>
		<dc:creator>kumar</dc:creator>
		<pubDate>Sat, 26 Sep 2009 03:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56181</guid>
		<description>Thank you very much to every one

I learned a lot today</description>
		<content:encoded><![CDATA[<p>Thank you very much to every one</p>
<p>I learned a lot today</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bradley</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56143</link>
		<dc:creator>Bradley</dc:creator>
		<pubDate>Thu, 24 Sep 2009 21:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56143</guid>
		<description>Thank you for the nice overview.

I would also recommend that you also add some instructions and screenshots showing how to configure SQL Server Agents to use Database Mail.

Microsoft&#039;s article cover it here: http://msdn.microsoft.com/en-us/library/ms190437(SQL.90).aspx

Enjoy.</description>
		<content:encoded><![CDATA[<p>Thank you for the nice overview.</p>
<p>I would also recommend that you also add some instructions and screenshots showing how to configure SQL Server Agents to use Database Mail.</p>
<p>Microsoft&#8217;s article cover it here: <a href="http://msdn.microsoft.com/en-us/library/ms190437(SQL.90).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms190437(SQL.90).aspx</a></p>
<p>Enjoy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boxek</title>
		<link>http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/#comment-56007</link>
		<dc:creator>Boxek</dc:creator>
		<pubDate>Sun, 20 Sep 2009 17:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=869#comment-56007</guid>
		<description>Sorry i had some misspellings in the code (in the comment, not in my test source). I&#039;ll write it again:

USE msdb
GO
EXEC sp_send_dbmail @profile_name=’PinalProfile’,
@recipients=’test@Example.com’,
@subject=’Test message’,
@body=’This is the body of the test message.
Congrates Database Mail Received By you Successfully.’,
- -  this is the problematic part
@query = ‘SELECT * From sysobjects’,
@attach_query_result_as_file = 1,
@query_attachment_filename =’Results.txt’;</description>
		<content:encoded><![CDATA[<p>Sorry i had some misspellings in the code (in the comment, not in my test source). I&#8217;ll write it again:</p>
<p>USE msdb<br />
GO<br />
EXEC sp_send_dbmail @profile_name=’PinalProfile’,<br />
@recipients=’test@Example.com’,<br />
@subject=’Test message’,<br />
@body=’This is the body of the test message.<br />
Congrates Database Mail Received By you Successfully.’,<br />
- &#8211;  this is the problematic part<br />
@query = ‘SELECT * From sysobjects’,<br />
@attach_query_result_as_file = 1,<br />
@query_attachment_filename =’Results.txt’;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
