각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 https://imweb.eond.com/webtip/430086

Changing a database table prefix is easy and here’s the simple step-by-step guide! For WordPress installations, it’s essential!


What you’ll need

  1. Use random.org to generate a strong table prefix
  2. Access to the database via cPanel or PHPMyAdmin
  3. A text editor
  4. 2 minutes

How to change a prefix

  1. In your text editor, change database_nameold_prefix_ and new_prefix_ to the required values:
    SET @database   = "database_name";
    SET @old_prefix = "old_prefix_";
    SET @new_prefix = "new_prefix_";
     
    SELECT
        concat(
            "RENAME TABLE ",
            TABLE_NAME,
            " TO ",
            replace(TABLE_NAME, @old_prefix, @new_prefix),
            ';'
        ) AS "SQL"
    FROM information_schema.TABLES WHERE TABLE_SCHEMA = @database;
  2. Run the query in cPanel or PHPMyAdmin on your WordPress database
  3. The output will be a series of SQL queries that will rename the tables for you
  4. Run the output
  5. Done!

How to add a prefix

If your database doesn’t have a prefix at all, follow the steps above but use the below query that’s been slightly modified for this purpose:

SET @database = "database_name";
SET @prefix   = "prefix_";
 
SELECT
    concat(
        "RENAME TABLE ",
        TABLE_NAME,
        " TO ",
        @prefix,
        TABLE_NAME,
        ';'
    ) AS "SQL"
FROM information_schema.TABLES WHERE TABLE_SCHEMA = @database;

Conclusion

See how easy that was? Isn’t it great when articles just get straight to the point? :)

코멘트 0
접기/펴기 | 댓글 새로고침
 
 
Total 683 articles in 19 / 57 pages
번호 제목 제목 조회 수 날짜날짜
467 [하드웨어] 새로 산 하드에 공진음이 들린다 5184 2014/02/15
466 [사이트관리] Apache 서버 .htaccess 활용(접근 제어 - 아이피 제어) 5995 2014/02/09
465 [생활] 뱅크월렛 사용하기 [4] 7523 2014/01/08
464 [엑셀] IF 조건문 7516 2013/12/31
463 [엑셀] 수식 전체 입력하기 5787 2013/12/31
462 [생활] CGV/롯데시네마/메가박스/프리머스 영화 싸게보는법! 재밌는 영화, 할인받아보자 7904 2013/12/16
461 [기타] 이클립스 Failed to crate the java machine 해결 방법 질문입니다. [1] 6447 2013/11/11
460 [가상윈도우] [VirtualBox] VirtualBox 저장소(VDI) 용량 늘리기 7642 2013/10/29
459 [윈도우] 윈도우 7 64비트 서비스팩1 설치 실패 19501 2013/10/29
458 [하드웨어] CPU 순위 5868 2013/10/09
457 [윈도우] 마우스키 설정으로 컴퓨터 하기 파일 9497 2013/07/27
456 [X61] 트랙포인트(빨콩) 대체하기 파일 9110 2013/07/10

해시태그 디렉터리

오늘의 핫게시물