\name{dbListSequences} \alias{dbListSequences} \title{Listing all SEQUENCES in a PostgreSQL database.} \description{ \code{dbListSequences} gets the names of all sequences in the database. } \usage{ dbListSequences(conn, pattern, all) } \arguments{ \item{conn}{A connection object (create it with the dbConnect.PgSQL.conn function from the package RdbiPgSQL)} \item{pattern}{Search for sequences that contain the pattern submitted in their name} \item{all}{If TRUE also system sequences will be listed. The default is FALSE.} } \details{ Returns the names of all sequences in the database to wich the user has connected. } \references{} \author{Johannes Rainer} \seealso{ \code{\link{createSequence}} } \keyword{data}