검색결과 리스트
mysql에 해당되는 글 13건
- 2014.11.15 [MySQL] Host 'xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
- 2014.10.16 [MySQL] MySQL Cursor
- 2014.10.16 [MySQL] 13.5 SQL Syntax for Prepared Statements
- 2014.08.06 [Mysql] Function, Procecure dump
- 2014.07.30 [MySQL] Update Join
- 2014.05.19 [MySQL] Workbench의 Update Delete시 Error Code 1175
- 2014.04.02 [MySql] 사용자 생성
- 2014.03.28 [Mariadb] root 사용자 비밀번호 변경
- 2013.12.25 [MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지
- 2013.12.23 [MySQL] Mac에서 사용가능한 MySQL GUI Client
- 2008.04.21 [MySQL] 우편번호 텍스트 파일을 MySQL에 넣는 방법
- 2008.02.20 [MySQL] MySQL GUI 툴
- 2008.02.20 [MySQL] MySQL 현재 버전 확인하기
글
[MySQL] Host 'xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
설정
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] MySQL Cursor (0) | 2014.10.16 |
---|---|
[MySQL] 13.5 SQL Syntax for Prepared Statements (0) | 2014.10.16 |
[Mysql] Function, Procecure dump (0) | 2014.08.06 |
[MySQL] Update Join (0) | 2014.07.30 |
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
트랙백
댓글
글
링크: http://dev.mysql.com/doc/refman/5.5/en/cursors.html
CREATE PROCEDURE curdemo()
BEGIN
DECLARE done INT DEFAULT FALSE;
DECLARE a CHAR(16);
DECLARE b, c INT;
DECLARE cur1 CURSOR FOR SELECT id,data FROM test.t1;
DECLARE cur2 CURSOR FOR SELECT i FROM test.t2;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
OPEN cur1;
OPEN cur2;
read_loop: LOOP
FETCH cur1 INTO a, b;
FETCH cur2 INTO c;
IF done THEN
LEAVE read_loop;
END IF;
IF b < c THEN
INSERT INTO test.t3 VALUES (a,b);
ELSE
INSERT INTO test.t3 VALUES (a,c);
END IF;
END LOOP;
CLOSE cur1;
CLOSE cur2;
END;
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] Host 'xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' (0) | 2014.11.15 |
---|---|
[MySQL] 13.5 SQL Syntax for Prepared Statements (0) | 2014.10.16 |
[Mysql] Function, Procecure dump (0) | 2014.08.06 |
[MySQL] Update Join (0) | 2014.07.30 |
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
트랙백
댓글
글
링크: http://dev.mysql.com/doc/refman/5.1/en/sql-syntax-prepared-statements.html
mysql> SET @s = 'SELECT SQRT(POW(?,2) + POW(?,2)) AS hypotenuse';
mysql> PREPARE stmt2 FROM @s;
mysql> SET @a = 6;
mysql> SET @b = 8;
mysql> EXECUTE stmt2 USING @a, @b;
+------------+
| hypotenuse |
+------------+
| 10 |
+------------+
mysql> DEALLOCATE PREPARE stmt2;
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] Host 'xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' (0) | 2014.11.15 |
---|---|
[MySQL] MySQL Cursor (0) | 2014.10.16 |
[Mysql] Function, Procecure dump (0) | 2014.08.06 |
[MySQL] Update Join (0) | 2014.07.30 |
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
트랙백
댓글
글
링크: http://www.ducea.com/2007/07/25/dumping-mysql-stored-procedures-functions-and-triggers/
function, Procedure Backup
mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt <database> > outputfile.sql
trigger 제외시키기
mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt --skip-triggers <database> > outputfile.sql
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] MySQL Cursor (0) | 2014.10.16 |
---|---|
[MySQL] 13.5 SQL Syntax for Prepared Statements (0) | 2014.10.16 |
[MySQL] Update Join (0) | 2014.07.30 |
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
[MySql] 사용자 생성 (0) | 2014.04.02 |
트랙백
댓글
글
UPDATE
TB_EXAMPLEBOOK_HISTORY AS this
INNER JOIN (
SELECT i.dic_sub_id
, Min(i.example_id) AS work_id
FROM TB_EXAMPLEBOOK_HISTORY i
GROUP BY i.dic_sub_id
) b
ON a.DIC_SUB_ID = b.dic_sub_id
SET a.WORK_ID = b.work_id;
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] 13.5 SQL Syntax for Prepared Statements (0) | 2014.10.16 |
---|---|
[Mysql] Function, Procecure dump (0) | 2014.08.06 |
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
[MySql] 사용자 생성 (0) | 2014.04.02 |
[Mariadb] root 사용자 비밀번호 변경 (0) | 2014.03.28 |
트랙백
댓글
글
링크: http://mysqlblog.fivefarmers.com/2010/09/01/workbench-called-me-a-dummy/
Go to Edit -> Preferences
Select the SQL Editor tab
Uncheck “Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)”
맥용 워크벤치는 경로가 조금 다르다.
Preferences -> SQL Queries -> "Safe Updates".Forbid UPDATEs and DELETEs with no key in WHERE clause or no LIMIT clause. Requires a reconnection.
이왕하는것 그림 같이 수정해서 Limit Rows Count도 Disable하자
그리고 재시작 해야지 적용된다.
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[Mysql] Function, Procecure dump (0) | 2014.08.06 |
---|---|
[MySQL] Update Join (0) | 2014.07.30 |
[MySql] 사용자 생성 (0) | 2014.04.02 |
[Mariadb] root 사용자 비밀번호 변경 (0) | 2014.03.28 |
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
트랙백
댓글
글
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] Update Join (0) | 2014.07.30 |
---|---|
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
[Mariadb] root 사용자 비밀번호 변경 (0) | 2014.03.28 |
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
트랙백
댓글
글
#mysqladmin이 있는 폴더로 이동
./mysqladmin -u root -p password [변경할 비밀번호]
Enter password: [기존비밀번호]
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MySQL] Workbench의 Update Delete시 Error Code 1175 (0) | 2014.05.19 |
---|---|
[MySql] 사용자 생성 (0) | 2014.04.02 |
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
[MySQL] Mac에서 사용가능한 MySQL GUI Client (0) | 2013.12.23 |
트랙백
댓글
글
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[Mariadb] root 사용자 비밀번호 변경 (0) | 2014.03.28 |
---|---|
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
[MySQL] Mac에서 사용가능한 MySQL GUI Client (0) | 2013.12.23 |
[MySQL] 우편번호 텍스트 파일을 MySQL에 넣는 방법 (0) | 2008.04.21 |
[MySQL] MySQL GUI 툴 (0) | 2008.02.20 |
트랙백
댓글
글
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
---|---|
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
[MySQL] 우편번호 텍스트 파일을 MySQL에 넣는 방법 (0) | 2008.04.21 |
[MySQL] MySQL GUI 툴 (0) | 2008.02.20 |
[MySQL] MySQL 현재 버전 확인하기 (0) | 2008.02.20 |
트랙백
댓글
글
로컬에서는 2, 3번만 하면 됩니다.
1. 우편번호정보 텍스트파일을 계정에 ftp 업로드
2. 텔넷 접속 상태에서 다음과 같이 입력하셔 mysql 에 접속하신 후에
>>mysql -u 아이디 -p 아이디
>>비밀번호입력
3. load data local infile '/home/hosting_users/아이디/test.txt' into table 테이블명;
* '/home/hosting_users/아이디/test.txt' 부분은 알맞게 변경하세요.
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
---|---|
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
[MySQL] Mac에서 사용가능한 MySQL GUI Client (0) | 2013.12.23 |
[MySQL] MySQL GUI 툴 (0) | 2008.02.20 |
[MySQL] MySQL 현재 버전 확인하기 (0) | 2008.02.20 |
트랙백
댓글
글
저도 GUI에 익숙해져 있는지 많이 불편해 하던차에 괜찮은 툴을 찾았습니다.
그래서 추천 !!
http://www.webyog.com/en/
단, Community Edition만 무료입니다~~~~~
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
---|---|
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
[MySQL] Mac에서 사용가능한 MySQL GUI Client (0) | 2013.12.23 |
[MySQL] 우편번호 텍스트 파일을 MySQL에 넣는 방법 (0) | 2008.04.21 |
[MySQL] MySQL 현재 버전 확인하기 (0) | 2008.02.20 |
트랙백
댓글
글
2. 명령 프롬프트에 ' SELECT version()'입력한다.
'DB / NoSQL > MariaDB/MySQL' 카테고리의 다른 글
[MariaDB] MariaDB for Mac (0) | 2013.12.31 |
---|---|
[MySQL] MySQL InnoDB Engine 사용 시 반드시 알아야 할 세 가지 (0) | 2013.12.25 |
[MySQL] Mac에서 사용가능한 MySQL GUI Client (0) | 2013.12.23 |
[MySQL] 우편번호 텍스트 파일을 MySQL에 넣는 방법 (0) | 2008.04.21 |
[MySQL] MySQL GUI 툴 (0) | 2008.02.20 |
RECENT COMMENT