Oralce 기본 사용 명령어
-- 오라클 설치 후 SQL PLUS 실행 사용자 명 입력 : sys/change_on_install as sysdba 데이터베이스 실행 : startup force nomount 단계 : startup nomount mount 단계 : alter database mount open 단계 : alter database open; :: FORCE 옵션은 현재 데이터베이스가 이미 시작된 상태라면 자동으로 데이터베이스를 종료후 시작해 준다. :: RESTRCT 옵션은 데이터베이스를 정상적으로 구동해 줍니다. 데이터베이스 종료 SQL> shutdown normal :: normal 멸령어를 사용할 때 옵션을 표시하지 않으면 기본적으로 normal 입니다. :: Transactional 데이터베이스 종료하는 시점..
웹개발/DataBase
2011. 7. 16. 23:59
php 인자값 확인 하는 함수
* 자주 까먹네.. func_get_args(); class A { public function __construct() { echo func_num_args() . " "; var_dump( func_get_args()); echo " "; } } $oA = new A(); $oA = new A( 1, 2, 3, "txt"); Output: 0 array(0) { } 4 array(4) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> string(3) "txt" }
카테고리 없음
2011. 7. 13. 13:18