Permissions for mysql 'SHOW CREATE PROCEDURE'?












2















I'm working on creating a 'read-only' mysql database. I want the user to be able to see everything, but not be able to modify anything. My user currently has the following grants:



GRANT USAGE ON . TO 'sqlprostudio-ro'@'%' IDENTIFIED BY PASSWORD '*x'
GRANT SELECT, EXECUTE, SHOW VIEW ON northwind.* TO 'sqlprostudio-ro'@'%'


I can see stored procedures, but if I run:



SHOW CREATE PROCEDURE x


The 'Create procedure' column returns null. Is there a way I can allow a read-only user to see the creation procedure without being able to modify it?










share|improve this question





























    2















    I'm working on creating a 'read-only' mysql database. I want the user to be able to see everything, but not be able to modify anything. My user currently has the following grants:



    GRANT USAGE ON . TO 'sqlprostudio-ro'@'%' IDENTIFIED BY PASSWORD '*x'
    GRANT SELECT, EXECUTE, SHOW VIEW ON northwind.* TO 'sqlprostudio-ro'@'%'


    I can see stored procedures, but if I run:



    SHOW CREATE PROCEDURE x


    The 'Create procedure' column returns null. Is there a way I can allow a read-only user to see the creation procedure without being able to modify it?










    share|improve this question



























      2












      2








      2


      0






      I'm working on creating a 'read-only' mysql database. I want the user to be able to see everything, but not be able to modify anything. My user currently has the following grants:



      GRANT USAGE ON . TO 'sqlprostudio-ro'@'%' IDENTIFIED BY PASSWORD '*x'
      GRANT SELECT, EXECUTE, SHOW VIEW ON northwind.* TO 'sqlprostudio-ro'@'%'


      I can see stored procedures, but if I run:



      SHOW CREATE PROCEDURE x


      The 'Create procedure' column returns null. Is there a way I can allow a read-only user to see the creation procedure without being able to modify it?










      share|improve this question
















      I'm working on creating a 'read-only' mysql database. I want the user to be able to see everything, but not be able to modify anything. My user currently has the following grants:



      GRANT USAGE ON . TO 'sqlprostudio-ro'@'%' IDENTIFIED BY PASSWORD '*x'
      GRANT SELECT, EXECUTE, SHOW VIEW ON northwind.* TO 'sqlprostudio-ro'@'%'


      I can see stored procedures, but if I run:



      SHOW CREATE PROCEDURE x


      The 'Create procedure' column returns null. Is there a way I can allow a read-only user to see the creation procedure without being able to modify it?







      mysql stored-procedures permissions






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 30 '17 at 16:31









      RolandoMySQLDBA

      141k24221379




      141k24221379










      asked Aug 30 '17 at 16:07









      KyleKyle

      23339




      23339






















          2 Answers
          2






          active

          oldest

          votes


















          5














          the second line in man says:



          To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.



          The other option (just a suggestion) you may design a procedure or function (preferable) to show the info in question.



          Regards,






          share|improve this answer
























          • Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

            – Kyle
            Aug 30 '17 at 16:19



















          0














          Under MySQL 8.0 things have changed, and you have to grant global SELECT privs to the user, so you'll need to do:
          GRANT SELECT ON . to ....





          share








          New contributor




          user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "182"
            };
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2fdba.stackexchange.com%2fquestions%2f184724%2fpermissions-for-mysql-show-create-procedure%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            the second line in man says:



            To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.



            The other option (just a suggestion) you may design a procedure or function (preferable) to show the info in question.



            Regards,






            share|improve this answer
























            • Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

              – Kyle
              Aug 30 '17 at 16:19
















            5














            the second line in man says:



            To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.



            The other option (just a suggestion) you may design a procedure or function (preferable) to show the info in question.



            Regards,






            share|improve this answer
























            • Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

              – Kyle
              Aug 30 '17 at 16:19














            5












            5








            5







            the second line in man says:



            To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.



            The other option (just a suggestion) you may design a procedure or function (preferable) to show the info in question.



            Regards,






            share|improve this answer













            the second line in man says:



            To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.



            The other option (just a suggestion) you may design a procedure or function (preferable) to show the info in question.



            Regards,







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 30 '17 at 16:14









            Dmytro Kh.Dmytro Kh.

            93117




            93117













            • Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

              – Kyle
              Aug 30 '17 at 16:19



















            • Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

              – Kyle
              Aug 30 '17 at 16:19

















            Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

            – Kyle
            Aug 30 '17 at 16:19





            Thanks! Adding "GRANT SELECT ON mysql.proc to x;" sorted the issue.

            – Kyle
            Aug 30 '17 at 16:19













            0














            Under MySQL 8.0 things have changed, and you have to grant global SELECT privs to the user, so you'll need to do:
            GRANT SELECT ON . to ....





            share








            New contributor




            user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

























              0














              Under MySQL 8.0 things have changed, and you have to grant global SELECT privs to the user, so you'll need to do:
              GRANT SELECT ON . to ....





              share








              New contributor




              user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.























                0












                0








                0







                Under MySQL 8.0 things have changed, and you have to grant global SELECT privs to the user, so you'll need to do:
                GRANT SELECT ON . to ....





                share








                New contributor




                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                Under MySQL 8.0 things have changed, and you have to grant global SELECT privs to the user, so you'll need to do:
                GRANT SELECT ON . to ....






                share








                New contributor




                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.








                share


                share






                New contributor




                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 7 mins ago









                user172198user172198

                1




                1




                New contributor




                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                user172198 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Database Administrators Stack Exchange!


                    • 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%2fdba.stackexchange.com%2fquestions%2f184724%2fpermissions-for-mysql-show-create-procedure%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

                    SQL Server 17 - Attemping to backup to remote NAS but Access is denied

                    Always On Availability groups resolving state after failover - Remote harden of transaction...

                    Restoring from pg_dump with foreign key constraints