각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 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 35 / 57 pages
번호 제목 제목 조회 수 날짜날짜
275 [기본] 24인치 모니터 해상도 16054 2011/03/17
274 [윈도우] SkyDrive 편리하게 사용하기(윈도우 탐색기로 이용하는 방법) 18237 2011/04/02
273 [기본] 파워 공진음 잡기 14069 2011/04/16
272 [브라우저] 구글 크롬 플러스 마우스 오른쪽 버튼 해제하기(즐겨찾기 이용) 22297 2011/05/14
271 [브라우저] 구글 크롬 플러스에서 오른쪽 마우스 해제 하기(플러그인 이용) [1] 19013 2011/05/14
270 [포토샵] Windows 7 64비트 / Adobe Photoshop CS3 이상에서 PFM 글꼴(Type 1) 사용하기 [1] 14605 2011/05/19
269 [윈도우] AppData 위치 경로 변경 이동(아이튠즈 때문에 c드라이브 용량 부족한 문제 해결방법)(강추) [1] 32257 2011/08/29
268 [모바일] [안드로이드]할일 관리 어플, GTasks [1] 11129 2011/11/14
267 [유틸리티] dgw to jpg 변환 [1] 8853 2011/11/15
266 [모바일] [컬러링]skt 컬러링 설정하기 25126 2011/11/16
265 [윈도우] '날씬하고 날렵하게' 윈도우7 최적화 실용 팁테크 11361 2011/11/23
264 [엑셀] 엑셀 휴대폰 번호 서식 8929 2011/12/06

해시태그 디렉터리

지금 이순간

오늘의 핫게시물