<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/discussions/f/general/8446/comments-not-getting-displayed-while-executing-mysql-script-in-higher-environment</link><description>I have a MySQL Query with my comments in it. I executed the same in higher environment and found that comments are not available and it shows blank space. Any thoughts why it is behaving like this. This happened with me for a stored procedure. OriginalPostID</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37160?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2016 18:43:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0324709c-c582-43e3-ac76-9a5a44ecefa8</guid><dc:creator>PhilB</dc:creator><description>Not that I&amp;#39;m aware of, it&amp;#39;s probably worth raising a support case. I&amp;#39;d also question the validity of using comments as an audit trail; you should be using a version control system to track such changes.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37158?ContentTypeID=1</link><pubDate>Wed, 21 Sep 2016 18:29:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ab32bc39-eeb7-4d03-bb3d-d17af50081ca</guid><dc:creator>jaishankarj</dc:creator><description>@philb: Is there any alternate to retain the comments? Is there any support case raised for the same? In absence of seeing these comments we loose the audit of any changes which are being done to the MySQL object&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37118?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 19:07:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:29a8831a-0384-4824-81a6-e28c49ce5b3e</guid><dc:creator>PhilB</dc:creator><description>It looks like this is a phpMyAdmin issue - see here: &lt;a href="https://github.com/phpmyadmin/phpmyadmin/issues/11717"&gt;github.com/.../11717&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37117?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 19:03:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3aaf343d-179f-4d0d-a239-95c9597450eb</guid><dc:creator>jaishankarj</dc:creator><description>@philb: In phpMyAdmin, version information 4.6.4&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37115?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 18:49:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:73f14597-cb8d-4162-9954-c73568ffde27</guid><dc:creator>PhilB</dc:creator><description>In... phpMyAdmin? MySQL workbench? which software?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37114?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 18:48:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:065a3c25-e207-4735-94ae-186a5423d506</guid><dc:creator>jaishankarj</dc:creator><description>@philb: I clicked on the Stored Proc name and the window appears which is not showing me the comments&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37112?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 18:11:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:eaf4c712-3f96-4177-9049-9649f4d29e97</guid><dc:creator>PhilB</dc:creator><description>Ok - how are you attempting to view the comments after creation?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37111?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 18:09:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:480b2b7f-f1f0-4d03-8012-1c9922026d1f</guid><dc:creator>jaishankarj</dc:creator><description>@philb: I have provided my comments in BEGIN - END block only in the Definition area of the stored procedure. Sample one is as follows: &lt;br /&gt;Begin&lt;br /&gt;&lt;br /&gt;/* =============================================*/&lt;br /&gt;/* Author: Jai Joshi */&lt;br /&gt;/* Date Created: 19/09/2016 */&lt;br /&gt;/* Description: &lt;Some text associated with SP&gt; */&lt;br /&gt;/* =============================================*/&lt;br /&gt;        &lt;br /&gt;SELECT &lt;colmn name&gt;, &lt;colmn name&gt; from &lt;table name&gt;  where &lt;colmn name&gt; = CONSTANT;&lt;br /&gt;END&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37106?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 17:07:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3a8596ea-dd7f-414e-953f-bffd6167de21</guid><dc:creator>PhilB</dc:creator><description>...because this may answer your question: &lt;a href="http://stackoverflow.com/questions/13949554/how-to-comment-sp-mysql"&gt;stackoverflow.com/.../how-to-comment-sp-mysql&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Comments not getting displayed while executing MySQL Script in Higher Environment</title><link>https://community.appian.com/thread/37105?ContentTypeID=1</link><pubDate>Tue, 20 Sep 2016 17:06:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b60fb38c-aa9f-4d0e-8e29-207bff011ec1</guid><dc:creator>PhilB</dc:creator><description>How are you attempting to view those comments? Are you using SHOW CREATE PROCEDURE or trying to see them in a different way?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>