2011년 8월 3일 수요일

FireBird Quick Start Guide 요약

 1. sysdba 비밀번호 바꾸기
gsec -user sysdba -pass masterkey -mo sysdba -pw newpassword
* sysdba의 초기 비밀번호는 masterkey이다

2. 사용자 추가
gsec -user sysdba -pass masterkey -add new_account -pw new_account_password

3. 보안을 위해 alias 사용을 권장한다. aliases.conf를 편집하면 된다.
아래와 같은 형식으로 작성한다.
--------------------------------------------------------------------------------
poker = E:\Games\Data\PokerBase.fdb
blackjack.fdb = C:\Firebird\Databases\cardgames\blkjk_2.fdb
--------------------------------------------------------------------------------

4. 연결 문자열 형식 (TCP/IP connection strings)
(1) a server name or IP address
(2) a colon (“:”)
(3) either the absolute path + filename on the server machine, or an alias defined on the server machine.
siamang:C:\Biology\Data\Primates\Apes\populations.fdb

5. ISQL을 이용해서 연결하기 (로컬)
C:\Program Files\Firebird\Firebird_2_0\bin> isql
SQL>Use CONNECT or CREATE DATABASE to specify a database
SQL>CONNECT ..\examples\empbuild\employee.fdb user SYSDBA password masterkey;

6. DB 생성
SQL>CREATE DATABASE '..\examples\empbuild\test.fdb' page_size 8192
CON>user 'SYSDBA' password 'masterkey';

7. 데이터 베이스 생성확인
SQL>SELECT * FROM RDB$RELATIONS;#

댓글 없음:

댓글 쓰기