I'm trying to find if there is a clear delineation as to whether to use a view or a stored procedure. I know in cases where you need to use an action query or you have logic you should use a stored procedure. But how about in cases where you are using just a select statement with no logic? Should that always be a View, or could you use a Stored Procedure for it? I've used simple select queries as Stored Procedures and have wondered if that is a no no.