I'm creating a build script for a database and building the views in alphabetical order. An issue I've run into is that a view is created before a view that is referenced in the definition. The referenced view is created later in the script. Is there a command I can use that would create a view without validating, i.e. ignore the dependencies?
Note: Stored Procedures have the concept of "deferred name resolution" but I don't see a way of using this for views.