Sybase

pchero on November 16th, 2010

 SYBASE 에서의 사용자 추가 방법 sp_addlogin ‘아이디’,’패스워드’      sp_adduser ‘아이디’  sp_dropuser ‘아이디’      % isql -Usa -Ppassword -Sservername 1> use master 2> go 1> sp_addlogin scott, tiger, test 2> go 1> use test 2> go 1> sp_adduser scott 2> go         exec  sp_addlogin  ‘homeusr’, ‘password’, @defdb=’ebaihome’, @auth_mech = ‘ASE’ exec […]

Continue reading about SYBASE 사용자 추가하기

SYBASE 사용법(요약) SYBASE home directory는 /home/sybase로 가정하며, 이하 ‘HOME’이라 합니다. 1.User System Account등록   1)User Account생성(System의 User등록방법에 따라)      Login as root – System Booting후 Root와 Password 입력)      Ex) #vi /etc/passwd/      Format] username:password:UID:GID:comment:user home directory:shell type      Example]sybase::100:100:SYBASE USER:/home/sybase:/bin/csh   2)User Directory생성      #cd /home      #mkdir […]

Continue reading about SYBASE 기본 사용법(시작/종료, Login/Logout, DB생성/삭제/변경, Device등록/삭제,

 SYBASE에서 원격 서버 접속 방법.  Linux(Ubuntu-10.04_Desktop) 버전 기준으로 작성하였다. SYBASE-ase-15.5 버전을 설치하였다고 가정한다. 1. SYBASE 홈디렉토리로 이동한다. $ cd $SYBASE 2. interface 파일을 수정한다. $vi ./interface 3. interface 파일안에는 기본적으로 자신의 호스트에 대한 내용들이 적혀있는데 이곳에 새로이 만들 DB의 alias 와 내용들을 입력하면된다. [master/query] [tcp/udp] [ether] [IP/host] [port] 의 순서로 수정을 하면 된다. JONATHANLAPTOP      […]

Continue reading about SYBASE – alias 설정 및 원격 서버 접속 방법.

pchero on November 3rd, 2010

SYBASE 에서 다음의 init 스크립트를 사용중 stop시 locale 에러가 나타나는 것을 확인했다. jonathan@jonathan-laptop:/opt/sybase/ASE-15_0/install$ cat /etc/init.d/sybase #!/bin/sh## Startup script for Sybase ASE# # description: Sybase Adaptive Server Enterprise# is a SQL database server.# processname: dataserver  SYBASE=/opt/sybaseSERVER=JONATHANLAPTOPLANG=ko_KR.euckrexport LANG  # Source environment variables.. $SYBASE/SYBASE.sh  # Find the name of the scriptNAME=`basename $0`  # For SELinux we need to […]

Continue reading about SYBASE – init Script and locale error