각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 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 29 / 57 pages
번호 제목 제목 조회 수 날짜날짜
347 구글 어플리케이션으로 자신이 소유한 도메인의 메일주소 사용하기 6097 2007/10/03
346 [웹로그] 내 블로그에 검색용 애드센스를 삽입하자 파일 [1] [1] 6118 2007/11/22
345 [웹로그] 구글 애드센스 주의할 점 [3] 6142 2007/11/05
344 [웹로그] 내 티스토리에 인기글 목록을 달아보자 6152 2007/11/08
343 [기본] 우리지역 도서관 이용해보자. 파일 6186 2007/10/07
342 [웹로그] Windows 고전(흑) 테마 파일 6194 2007/11/20
341 [기본] 카스퍼스키 안티 바이러스 7, 3개월 무료 이용권 (처음 사용자용) 6199 2007/12/01
340 [웹로그] 내 파이어폭스 북마크를 다른 컴퓨터에서도 사용하자 6215 2007/10/28
339 [기본] 작업관리자에서 필요없는 실행프로세서를 죽이자. 파일 6230 2007/10/28
338 [기본] ncloudblog님의 스킨 날짜 부분 따라하기 파일 6237 2007/11/21
337 [웹로그] 이온디 웹디벨로퍼 6250 2009/11/15
336 [기본] [프로디지 7.1 LT][참고] 다이렉트와이어 설정방법 및 NSP 활용방법 (초보용) 파일 6256 2007/10/29

해시태그 디렉터리

지금 이순간

오늘의 핫게시물