As explained in the KOMA-Script documentation, section 3.7 “Document Titles”, there exists a document class option titlepage, which for your case must set to one of the “deactivated” values, and there is also an environment with the same name titlepage. Optionally you could use \maketitle[<pagenumber>] outside of titlepage environment(!), if you want to set the automatic generated title on a later page (in double sided documents this should be an odd page number!).
Aditionally the command \tableofcontents must be redefined. That’s the only thing here not to be found in the documentation.
\documentclass[titlepage=off]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{blindtext}% for dummy text, needs "babel"
\newcommand{\BlindDoc}{% both commands provided by "blindtext":
\blinddocument
\Blinddocument
}
% removes the caption "Contents" and the start of a new page:
\makeatletter
\renewcommand*{\tableofcontents}{\@starttoc{toc}}
\makeatother
\begin{document}
\begin{titlepage}
\pagestyle{empty}
\begin{center}
{\bfseries\Huge An Example Document with the \LaTeX\ Package ``\texttt{blindtext}''}
\vspace{1.5em}
{\Large Package author: \textit{Knut Lickert}}
\end{center}
\vspace{3em}
\tableofcontents
\cleardoublepage
\end{titlepage}
\begin{center}
\thispagestyle{empty}
\vspace*{10em}
{\bfseries\Huge An Example Document with the \LaTeX\ Package ``\texttt{blindtext}''}
\vspace{1.5em}
{\large\itshape A package for dummy text in different languages}
\vfill
{\Large Package author: \textit{Knut Lickert}}
\vspace{1.5em}
``Blind Dummy'' Publishing House, Dark-Side-of-the-Moon
\end{center}
\BlindDoc
\BlindDoc
\BlindDoc
\BlindDoc
\BlindDoc
\end{document}