각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 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 53 / 57 pages
번호 제목 제목 조회 수 날짜날짜
59 미니위니 플래시 뮤직박스 0.1 파일 4059 2008/08/01
58 [브라우저] 오페라 브라우저 사용시 변경할 사항 10726 2008/07/31
57 오토셋 관련 팁 4575 2008/07/31
56 동영상 다운로드 4310 2008/07/29
55 [윈도우] 파일삭제 확인을 뜨지 않게 하기 파일 11416 2007/11/25
54 디퓨젼 디더(Diffusion Dither) 사용을 이해하기 6559 2007/11/25
53 무료 FTP 사이트 29821 2007/11/20
52 개인도메인 활용하기 (작성 중) 5396 2007/10/05
51 [브라우저] 파이어폭스 팁입니다. 12590 2007/10/04
50 구글 어플리케이션으로 자신이 소유한 도메인의 메일주소 사용하기 6097 2007/10/03
49 네이버 오픈API 책검색 6784 2007/09/17
48 [기타] 네이버 카페 자료 백업을 위한 프로그램 - 까네 2.0 (GPL 라이센스 버전) 파일 12009 2007/09/17

해시태그 디렉터리