开发者

mysql CREATE VIEW not working from mysql_query

开发者 https://www.devze.com 2023-01-16 03:06 出处:网络
I have a code to create VIEW in mysql database which is working fine on my local server. It creates and crop view normally. But on my Online server it gives error

I have a code to create VIEW in mysql database which is working fine on my local server. It creates and crop view normally. But on my Online server it gives error

"CREATE VIEW command denied to user"

for online database I manually create VIEW in Database form PHPmyAdmin [Myadmin is in localhost online] it creating, SO i have permi开发者_运维技巧ssion to create VIEW on online database.

But with php mysql_query it is giving command denied error. is there any service to be on for creating view with php.


This message says that user doesn't have enough permissions to create view. Permissions are granted to particular user @ particular host. You must execute

GRANT CREATE VIEW ON *.* TO 'username'@'host'; 

where host is hostname from where your CREATE VIEW is executed

Also, user must have SELECT privilages on all tabels and columns involved


I was doing this from CPanel / phpMyAdmin web interface because my create script had the name of the database embedded in it that was not the same as my wordpress mysql database. I.e "CREATE VIEW blog.vwMyView ....".

I had a local MySql Database on my computer that was named blog, which was different than my WordPress MySQL database. So naturally it gives an security error instead of saying the database was invalid. Silly me for not catching it sooner.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号