각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
첨부파일 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 31 / 57 pages
번호 제목 제목 조회 수 날짜날짜
323 [기타] 이클립스 Failed to crate the java machine 해결 방법 질문입니다. [1] 6447 2013/11/11
322 [웹로그] 테터툴즈 및 티스토리 도움말 링크 페이지 6513 2006/05/31
321 [웹로그] 환율, 좀 올라주면 안되겠니? [1] 6527 2007/11/07
320 [웹로그] DB 백업&복원 6533 2010/08/17
319 [기본] 웹페이지 동영상 주소 알아내기 파일 6547 2007/11/25
318 디퓨젼 디더(Diffusion Dither) 사용을 이해하기 6559 2007/11/25
317 [웹로그] Daum 캘린더, 이런 기능 어떨까? [2] 6607 2007/11/20
316 [하드웨어] 고장난 컴퓨터 6625 2007/10/08
315 [하드웨어] 업어온 아버지의 PC 파일 6700 2007/10/07
314 [웹로그] 카스퍼스키 무료로 사용하기 6769 2007/10/23
313 네이버 오픈API 책검색 6784 2007/09/17
312 [웹로그] 내가 사용하는 프로그램 6789 2009/09/11

해시태그 디렉터리

지금 이순간

오늘의 핫게시물