Hello,
I am working on this one script to extract the the ddl for the sequences.. This works fine but some sequences have grants and i am having trouble figuring out where to get the grants from:

select 'CREATE SEQUENCE '||SEQUENCE_NAME||chr(10)||
' INCREMENT BY '||INCREMENT_BY||chr(10)||
' START WITH '||LAST_NUMBER||chr(10)||
' MINVALUE '||MIN_VALUE||chr(10)||
' MAXVALUE '||MAX_VALUE||chr(10)||
decode(CYCLE_FLAG,'N',' NOCYCLE','CICLE')||chr(10)||
decode(ORDER_FLAG,'N',' NOORDER','ORDER')||chr(10)||
' CACHE '||CACHE_SIZE
from ALL_SEQUENCES
where SEQUENCE_OWNER = 'ABC' ;

the output is this..but how do i get the grants
CREATE SEQUENCE RTDATE.CLOSURE_ID_SEQ
START WITH 79
INCREMENT BY 1
NOMINVALUE
NOMAXVALUE
NOCYCLE
CACHE 20
NOORDER
/
source database ddl:
CREATE SEQUENCE RTDATE.CLOSURE_ID_SEQ
START WITH 79
INCREMENT BY 1
NOMINVALUE
NOMAXVALUE
NOCYCLE
CACHE 20
NOORDER
/
GRANT SELECT ON RTDATE.CLOSURE_ID_SEQ TO PDS_CCS_MAINT
/

thanks
Jigar