database.sarang.net
UserID
Passwd
Database
DBMS
MySQL
PostgreSQL
Firebird
Oracle
ㆍInformix
Sybase
MS-SQL
DB2
Cache
CUBRID
LDAP
ALTIBASE
Tibero
DB 문서들
스터디
Community
공지사항
자유게시판
구인|구직
DSN 갤러리
도움주신분들
Admin
운영게시판
최근게시물
Informix Q&A 489 게시물 읽기
No. 489
디비단위의 권한 제어 shell script
작성자
shell script
작성일
2001-02-06 10:43
조회수
5,318

revoke.sh 와 grant.sh 두개의 파일 (ksh shell script)

 

revoke.sh

==============================

 

if [ $# -ne 2 ]

then

echo "USAGE: $0 database명 user명"

exit 1

fi

 

Database=$1

 

dbaccess $Database - <<!

output to "tablist" without headings

select tabname from systables where tabid > 100 and tabtype !='V';

!

for TABNAME in `cat tablist`

do

dbaccess $Database - <<!

revoke all on $TABNAME from $3;

grant select on $TABNAME to $3;

!

done

rm tablist

 

 

grant.sh

=======================

 

if [ $# -ne 2 ]

then

echo "USAGE: $0 database명 user명 "

exit 1

fi

 

Database=$1

 

dbaccess $Database - <<!

output to "tablist" without headings

select tabname from systables

where tabid > 100 and tabtype != 'V';

!

 

for TABNAME in `cat tablist`

do

echo

echo Doing.. $Database:$TABNAME

dbaccess $Database - <<!

grant insert on $TABNAME to $2;

grant update on $TABNAME to $2;

grant delete on $TABNAME to $2;

grant select on $TABNAME to $2;

!

done

rm tablist

[Top]
No.
제목
작성자
작성일
조회
493text 형에서의 like 검색하는 방법이 정말 없는지요.
2001-02-06
5062
494┕>Re: text 형에서의 like 검색하는 방법이 정말 없는지요.
박영길
2001-02-06 21:33:34
6196
496 ┕>웹데이터 블레이드를 설치하는데 문제가....
2001-02-07 21:48:49
5204
500  ┕>Re: 웹데이터 블레이드를 설치하는데 문제가....
박영길
2001-02-08 23:09:34
5318
492IIF2000,IDS2000(LINUX) DOWNLOAD
정재익
2001-02-06
5551
491dbload 유틸리티 사용시 필요한 command 생성 스크립트
shell script
2001-02-06
5833
489디비단위의 권한 제어 shell script
shell script
2001-02-06
5318
487두시간의 시간차이를 구하는 함수
SPLtip
2001-02-06
5903
485이미지 데이터가 담긴 MS_SQL 디비를 INFORMIX로 IMPORT 할 수 없나여?
man02
2001-02-04
5111
484remote DB access 자세한 세팅 방법(급합니다!!!)
무무
2001-02-02
5103
490┕>Re: remote DB access 자세한 세팅 방법(급합니다!!!)
purple
2001-02-06 10:44:10
5627
Valid XHTML 1.0!
All about the DATABASE... Copyleft 1999-2024 DSN, All rights reserved.
작업시간: 0.017초, 이곳 서비스는
	PostgreSQL v16.2로 자료를 관리합니다