How to escape ampersand in MS SQLWhat does <![CDATA[]]> in XML mean?How can I prevent SQL injection in PHP?How do I perform an IF…THEN in an SQL SELECT?Add a column with a default value to an existing table in SQL ServerHow to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?Parameterize an SQL IN clauseInserting multiple rows in a single SQL query?How do I escape a single quote in SQL Server?How do I UPDATE from a SELECT in SQL Server?

How to reduce predictors the right way for a logistic regression model

What's the name of the logical fallacy where a debater extends a statement far beyond the original statement to make it true?

Quoting Keynes in a lecture

Does Doodling or Improvising on the Piano Have Any Benefits?

Is there a distance limit for minecart tracks?

Ways of geometrical multiplication

Has the laser at Magurele, Romania reached a tenth of the Sun's power?

Grepping string, but include all non-blank lines following each grep match

How do I fix the group tension caused by my character stealing and possibly killing without provocation?

How can I safely use "Thalidomide" in my novel while respecting the trademark?

Mimic lecturing on blackboard, facing audience

Would a primitive species be able to learn English from reading books alone?

Sigmoid with a slope but no asymptotes?

Can you identify this lizard-like creature I observed in the UK?

Why does the Persian emissary display a string of crowned skulls?

Integral Notations in Quantum Mechanics

Is there a reason to prefer HFS+ over APFS for disk images in High Sierra and/or Mojave?

Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?

How to preserve electronics (computers, iPads and phones) for hundreds of years

How do I prevent inappropriate ads from appearing in my game?

How much do grades matter for a future academia position?

How do I tell my boss that I'm quitting in 15 days (a colleague left this week)

Do people actually use the word "kaputt" in conversation?

Visualizing the difference curve in a 2D plot?



How to escape ampersand in MS SQL


What does <![CDATA[]]> in XML mean?How can I prevent SQL injection in PHP?How do I perform an IF…THEN in an SQL SELECT?Add a column with a default value to an existing table in SQL ServerHow to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?Parameterize an SQL IN clauseInserting multiple rows in a single SQL query?How do I escape a single quote in SQL Server?How do I UPDATE from a SELECT in SQL Server?













1















I have a table named tblCandy with an XML field named CandySpecs. When I try to add a value containing an ampersand (&) I get the error:



UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


Msg 2282, Level 16, State 1, Line 1
XQuery [tblCandy.CandySpecs.modify()]: Invalid entity reference


I’ve tried various escape sequences with no luck:



/&
&
&&


There is a lot of guidance out there on this issue and I’m wondering if there is one best way to address this problem.










share|improve this question



















  • 3





    As it's XML I would assume it wants &amp; - worth a try anyway

    – James
    Jun 25 '14 at 15:12












  • Try select 'a&z' col1 for XML path('x')

    – Bogdan Sahlean
    Jun 25 '14 at 15:43











  • It does like &amp; but I was wondering if there was a way to not use that.

    – Micro
    Jun 25 '14 at 15:48















1















I have a table named tblCandy with an XML field named CandySpecs. When I try to add a value containing an ampersand (&) I get the error:



UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


Msg 2282, Level 16, State 1, Line 1
XQuery [tblCandy.CandySpecs.modify()]: Invalid entity reference


I’ve tried various escape sequences with no luck:



/&
&
&&


There is a lot of guidance out there on this issue and I’m wondering if there is one best way to address this problem.










share|improve this question



















  • 3





    As it's XML I would assume it wants &amp; - worth a try anyway

    – James
    Jun 25 '14 at 15:12












  • Try select 'a&z' col1 for XML path('x')

    – Bogdan Sahlean
    Jun 25 '14 at 15:43











  • It does like &amp; but I was wondering if there was a way to not use that.

    – Micro
    Jun 25 '14 at 15:48













1












1








1








I have a table named tblCandy with an XML field named CandySpecs. When I try to add a value containing an ampersand (&) I get the error:



UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


Msg 2282, Level 16, State 1, Line 1
XQuery [tblCandy.CandySpecs.modify()]: Invalid entity reference


I’ve tried various escape sequences with no luck:



/&
&
&&


There is a lot of guidance out there on this issue and I’m wondering if there is one best way to address this problem.










share|improve this question
















I have a table named tblCandy with an XML field named CandySpecs. When I try to add a value containing an ampersand (&) I get the error:



UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


Msg 2282, Level 16, State 1, Line 1
XQuery [tblCandy.CandySpecs.modify()]: Invalid entity reference


I’ve tried various escape sequences with no luck:



/&
&
&&


There is a lot of guidance out there on this issue and I’m wondering if there is one best way to address this problem.







sql sql-server






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 25 '14 at 15:38







Micro

















asked Jun 25 '14 at 14:45









MicroMicro

5,74565684




5,74565684







  • 3





    As it's XML I would assume it wants &amp; - worth a try anyway

    – James
    Jun 25 '14 at 15:12












  • Try select 'a&z' col1 for XML path('x')

    – Bogdan Sahlean
    Jun 25 '14 at 15:43











  • It does like &amp; but I was wondering if there was a way to not use that.

    – Micro
    Jun 25 '14 at 15:48












  • 3





    As it's XML I would assume it wants &amp; - worth a try anyway

    – James
    Jun 25 '14 at 15:12












  • Try select 'a&z' col1 for XML path('x')

    – Bogdan Sahlean
    Jun 25 '14 at 15:43











  • It does like &amp; but I was wondering if there was a way to not use that.

    – Micro
    Jun 25 '14 at 15:48







3




3





As it's XML I would assume it wants &amp; - worth a try anyway

– James
Jun 25 '14 at 15:12






As it's XML I would assume it wants &amp; - worth a try anyway

– James
Jun 25 '14 at 15:12














Try select 'a&z' col1 for XML path('x')

– Bogdan Sahlean
Jun 25 '14 at 15:43





Try select 'a&z' col1 for XML path('x')

– Bogdan Sahlean
Jun 25 '14 at 15:43













It does like &amp; but I was wondering if there was a way to not use that.

– Micro
Jun 25 '14 at 15:48





It does like &amp; but I was wondering if there was a way to not use that.

– Micro
Jun 25 '14 at 15:48












4 Answers
4






active

oldest

votes


















0














Special symbols in SQL server are being escaped with



in your example statement would look following:



UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1





share|improve this answer























  • Tried both back and forward slash and that didn't work. SSMS didn't like it.

    – Micro
    Jun 25 '14 at 15:05


















0














Using &amp; instead of just &.
I found the answer on this article: http://www.techrepublic.com/article/beware-of-the-ampersand-when-using-xml/






share|improve this answer






























    0














    Here's a much better way to deal with this:



    UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName><![CDATA[M&Ms]]></BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


    Explanation: the CDATA tag tells the XML to ignore character markup for this block of data.



    Related StackOverflow question (not strictly a dupe, but would be worth reading if you're not familiar with this): What does <![CDATA[]]> in XML mean?



    This will bypass not only the &, but also other potentially breaking pieces of data such as < and > that could potentially exist within the data you're dealing with.






    share|improve this answer
































      -1














      SET NOCOUNT ON
      GO

      CREATE TABLE tblCandy ( Id INT, Brandname XML )
      GO

      INSERT INTO tblCandy VALUES ( 1, '<Brandname >test</Brandname >' )
      GO

      SELECT 'before', * FROM tblCandy

      UPDATE tblCandy
      SET Brandname.modify('replace value of (//Brandname/text())[1]
      with string("as first into")')
      WHERE Id = 1

      SELECT 'After', * FROM tblCandy
      GO

      DROP TABLE tblCandy
      GO





      share|improve this answer


















      • 1





        this isn't really practical for my situation...

        – Micro
        Jun 25 '14 at 15:38










      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f24411836%2fhow-to-escape-ampersand-in-ms-sql%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Special symbols in SQL server are being escaped with



      in your example statement would look following:



      UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1





      share|improve this answer























      • Tried both back and forward slash and that didn't work. SSMS didn't like it.

        – Micro
        Jun 25 '14 at 15:05















      0














      Special symbols in SQL server are being escaped with



      in your example statement would look following:



      UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1





      share|improve this answer























      • Tried both back and forward slash and that didn't work. SSMS didn't like it.

        – Micro
        Jun 25 '14 at 15:05













      0












      0








      0







      Special symbols in SQL server are being escaped with



      in your example statement would look following:



      UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1





      share|improve this answer













      Special symbols in SQL server are being escaped with



      in your example statement would look following:



      UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName>M&Ms</BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1






      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jun 25 '14 at 14:47









      Matas VaitkeviciusMatas Vaitkevicius

      33.9k16167176




      33.9k16167176












      • Tried both back and forward slash and that didn't work. SSMS didn't like it.

        – Micro
        Jun 25 '14 at 15:05

















      • Tried both back and forward slash and that didn't work. SSMS didn't like it.

        – Micro
        Jun 25 '14 at 15:05
















      Tried both back and forward slash and that didn't work. SSMS didn't like it.

      – Micro
      Jun 25 '14 at 15:05





      Tried both back and forward slash and that didn't work. SSMS didn't like it.

      – Micro
      Jun 25 '14 at 15:05













      0














      Using &amp; instead of just &.
      I found the answer on this article: http://www.techrepublic.com/article/beware-of-the-ampersand-when-using-xml/






      share|improve this answer



























        0














        Using &amp; instead of just &.
        I found the answer on this article: http://www.techrepublic.com/article/beware-of-the-ampersand-when-using-xml/






        share|improve this answer

























          0












          0








          0







          Using &amp; instead of just &.
          I found the answer on this article: http://www.techrepublic.com/article/beware-of-the-ampersand-when-using-xml/






          share|improve this answer













          Using &amp; instead of just &.
          I found the answer on this article: http://www.techrepublic.com/article/beware-of-the-ampersand-when-using-xml/







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Sep 29 '16 at 0:01









          Gabriel MolterGabriel Molter

          134




          134





















              0














              Here's a much better way to deal with this:



              UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName><![CDATA[M&Ms]]></BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


              Explanation: the CDATA tag tells the XML to ignore character markup for this block of data.



              Related StackOverflow question (not strictly a dupe, but would be worth reading if you're not familiar with this): What does <![CDATA[]]> in XML mean?



              This will bypass not only the &, but also other potentially breaking pieces of data such as < and > that could potentially exist within the data you're dealing with.






              share|improve this answer





























                0














                Here's a much better way to deal with this:



                UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName><![CDATA[M&Ms]]></BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


                Explanation: the CDATA tag tells the XML to ignore character markup for this block of data.



                Related StackOverflow question (not strictly a dupe, but would be worth reading if you're not familiar with this): What does <![CDATA[]]> in XML mean?



                This will bypass not only the &, but also other potentially breaking pieces of data such as < and > that could potentially exist within the data you're dealing with.






                share|improve this answer



























                  0












                  0








                  0







                  Here's a much better way to deal with this:



                  UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName><![CDATA[M&Ms]]></BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


                  Explanation: the CDATA tag tells the XML to ignore character markup for this block of data.



                  Related StackOverflow question (not strictly a dupe, but would be worth reading if you're not familiar with this): What does <![CDATA[]]> in XML mean?



                  This will bypass not only the &, but also other potentially breaking pieces of data such as < and > that could potentially exist within the data you're dealing with.






                  share|improve this answer















                  Here's a much better way to deal with this:



                  UPDATE tblCandy SET OrigOtherData.modify ('insert <BrandName><![CDATA[M&Ms]]></BrandName> as first into (CandySpecs/Table)[1]') WHERE RecordID = 1


                  Explanation: the CDATA tag tells the XML to ignore character markup for this block of data.



                  Related StackOverflow question (not strictly a dupe, but would be worth reading if you're not familiar with this): What does <![CDATA[]]> in XML mean?



                  This will bypass not only the &, but also other potentially breaking pieces of data such as < and > that could potentially exist within the data you're dealing with.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 7 at 3:23

























                  answered Mar 7 at 3:18









                  user2366842user2366842

                  1,1981323




                  1,1981323





















                      -1














                      SET NOCOUNT ON
                      GO

                      CREATE TABLE tblCandy ( Id INT, Brandname XML )
                      GO

                      INSERT INTO tblCandy VALUES ( 1, '<Brandname >test</Brandname >' )
                      GO

                      SELECT 'before', * FROM tblCandy

                      UPDATE tblCandy
                      SET Brandname.modify('replace value of (//Brandname/text())[1]
                      with string("as first into")')
                      WHERE Id = 1

                      SELECT 'After', * FROM tblCandy
                      GO

                      DROP TABLE tblCandy
                      GO





                      share|improve this answer


















                      • 1





                        this isn't really practical for my situation...

                        – Micro
                        Jun 25 '14 at 15:38















                      -1














                      SET NOCOUNT ON
                      GO

                      CREATE TABLE tblCandy ( Id INT, Brandname XML )
                      GO

                      INSERT INTO tblCandy VALUES ( 1, '<Brandname >test</Brandname >' )
                      GO

                      SELECT 'before', * FROM tblCandy

                      UPDATE tblCandy
                      SET Brandname.modify('replace value of (//Brandname/text())[1]
                      with string("as first into")')
                      WHERE Id = 1

                      SELECT 'After', * FROM tblCandy
                      GO

                      DROP TABLE tblCandy
                      GO





                      share|improve this answer


















                      • 1





                        this isn't really practical for my situation...

                        – Micro
                        Jun 25 '14 at 15:38













                      -1












                      -1








                      -1







                      SET NOCOUNT ON
                      GO

                      CREATE TABLE tblCandy ( Id INT, Brandname XML )
                      GO

                      INSERT INTO tblCandy VALUES ( 1, '<Brandname >test</Brandname >' )
                      GO

                      SELECT 'before', * FROM tblCandy

                      UPDATE tblCandy
                      SET Brandname.modify('replace value of (//Brandname/text())[1]
                      with string("as first into")')
                      WHERE Id = 1

                      SELECT 'After', * FROM tblCandy
                      GO

                      DROP TABLE tblCandy
                      GO





                      share|improve this answer













                      SET NOCOUNT ON
                      GO

                      CREATE TABLE tblCandy ( Id INT, Brandname XML )
                      GO

                      INSERT INTO tblCandy VALUES ( 1, '<Brandname >test</Brandname >' )
                      GO

                      SELECT 'before', * FROM tblCandy

                      UPDATE tblCandy
                      SET Brandname.modify('replace value of (//Brandname/text())[1]
                      with string("as first into")')
                      WHERE Id = 1

                      SELECT 'After', * FROM tblCandy
                      GO

                      DROP TABLE tblCandy
                      GO






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jun 25 '14 at 15:01









                      mohan111mohan111

                      6,17611733




                      6,17611733







                      • 1





                        this isn't really practical for my situation...

                        – Micro
                        Jun 25 '14 at 15:38












                      • 1





                        this isn't really practical for my situation...

                        – Micro
                        Jun 25 '14 at 15:38







                      1




                      1





                      this isn't really practical for my situation...

                      – Micro
                      Jun 25 '14 at 15:38





                      this isn't really practical for my situation...

                      – Micro
                      Jun 25 '14 at 15:38

















                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f24411836%2fhow-to-escape-ampersand-in-ms-sql%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                      Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                      Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved