Is there a way to cache tables or row cache tables into memory at database startup time? The reason I want to do this is because when the database first starts up, some queries take a long time to execute, but subsequent executions of the queries are faster (even if the selection criteria has changed). I've analyzed the timings of the query and the parsing time is minimal compared to the execution/fetch times.

Thanks.