cafe24에서 데이터베이스에서 가져오기 안되네요 채택완료
cafe24에서 mysql 가져오기 안되네요
다른서버에 있는 *.sql.zip 백업파일을
가져오기 업로드 했는데
이런 오류가 떠요....
DELIMITER $$ -- -- 프로시저 -- CREATE DEFINER=`weishang24`@`localhost` PROCEDURE `tableRename`() BEGIN DECLARE done INT DEFAULT FALSE; DECLARE bo_table varchar(20); DECLARE cur1 CURSOR FOR SELECT table_name FROM information_schema.tables WHERE table_schema=DATABASE(); DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE; OPEN cur1; read_loop: LOOP FETCH cur1 INTO bo_table; IF done THEN LEAVE read_loop; END IF; SET @s = CONCAT(' ALTER TABLE ', bo_table, ' RENAME ' , replace(bo_table, 'g5_', 'kr_g5_') ); PREPARE stmt FROM @s; EXECUTE stmt; END LOOP; CLOSE cur1; END$$
MySQL 메시지: http://uws7-005.cafe24.com/WebMysql/url.php?url=http%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F5.6%2Fen%2Ferror-messages-server.html" target="mysql_doc" style="color: rgb(35, 90, 129); cursor: pointer; outline: none; font-family: sans-serif; font-size: 13.12px; background-color: rgb(255, 192, 203);">http://uws7-005.cafe24.com/WebMysql/themes/dot.gif" title="문서" alt="문서" class="icon ic_b_help" style="vertical-align: middle; border: 0px; margin: 0px 0px 0px 0.3em; width: 16px; height: 16px; padding: 0px !important; background-image: url("./themes/pmahomme/img/sprites.png") !important; background-repeat: no-repeat !important; background-position: 0px -400px !important;">
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
답변 2개
답변을 작성하려면 로그인이 필요합니다.
로그인