각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 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 5 / 57 pages
번호 제목 제목 조회 수 날짜날짜
635 [미디어/녹음·재생] 동영상 WMV 인코딩 방법 9422 2007/09/04
634 [생활] 고등학교 졸업증명서 인터넷으로 출력가능합니다(공인인증서 필요!!!!).~~ 18823 2007/09/10
633 [네트워크] FON FAQ [1] 8319 2007/09/12
632 [기타] 네이버 카페 자료 백업을 위한 프로그램 - 까네 2.0 (GPL 라이센스 버전) 파일 12009 2007/09/17
631 네이버 오픈API 책검색 6784 2007/09/17
630 [웹로그] Play Street 에 참여할 의사가 있으신지요? 5964 2007/10/02
629 구글 어플리케이션으로 자신이 소유한 도메인의 메일주소 사용하기 6097 2007/10/03
628 [브라우저] 파이어폭스 팁입니다. 12590 2007/10/04
627 [하드웨어] AMD 939소켓 사용하시는 분 계신가요? 7016 2007/10/04
626 개인도메인 활용하기 (작성 중) 5396 2007/10/05
625 [하드웨어] 컴퓨터 고장 뭐가 문제일까요? 7095 2007/10/05
624 [하드웨어] 아버지 컴퓨터 사양 7888 2007/10/07

해시태그 디렉터리

오늘의 핫게시물