<div class="gmail_quote">On Fri, Jan 8, 2010 at 11:52 AM, Emerson, Tom (*IC) <span dir="ltr">&lt;<a href="mailto:Tom.Emerson@wbconsultant.com">Tom.Emerson@wbconsultant.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I&#39;ve come across something I think is a bit odd for a database - every table has a corresponding &quot;view&quot; that (I presume) is little more than &quot;select * from table&quot; - end user (reporting) apps only have access to the &quot;views&quot; and not the underlying tables.  The reason I&#39;ve been given for this is that it &quot;avoids locking issues&quot;.<br>

<br>
&gt;From this, I also presume that the &quot;views&quot; are &quot;read only&quot;, which I would agree would avoid locking the underlying table, but doesn&#39;t a &quot;view&quot; imply extra processing and/or storage to support the view?  [i.e., a &quot;temporary&quot; table built and populated with a copy of the data]<br>

<br>
This seems to be a false-economy to me - but then, I &quot;grew up&quot; with a different sort of database than the current crop of RDBMS&#39;s, one in which &quot;locking&quot; wasn&#39;t a big scary issue.  (it is still a big issue, just not scary...)  After all, &quot;end user apps&quot; can be written such that any &quot;query&quot; is a &quot;read only&quot; query, avoiding the need to generate a temporary table and populate it with a copy of the data [in particular, you would need/use &quot;non-repeatable&quot; reads]<br>

<br>
For those of you who administer modern databases, does this make sense?  Is it true that a &quot;view&quot; that mirrors the structure of an existing table completely avoids &quot;locking&quot; issues with the tables, or are you robbing peter to pay paul?  [using more disk or processor time to present the same data]<br>

</blockquote></div><br>Yes on one hand, maybe on the other hand. Guess which hand? (Joking)<br>
<br>
A view is a recordset of data that exists as a virtual table in the
database. They are primarily used for rapid querying, data protection, or obfuscation.
Views are also dummy objects, they only have the same security as the
underlying table they query. If your users don&#39;t have the permissions
to access certain columns and rows in the table, they won&#39;t have access
to the columns and rows through the view. So, yes, views can be used to
alleviate locks because they -generally- aren&#39;t used to edit data.<br>
<br>
As far as locks and cursors, you can use views to edit data but you
don&#39;t want to do that if you can avoid it. There are simply too many
things to go wrong. If you see a view that starts with the word
&quot;UPDATE&quot; in it&#39;s code, that&#39;s a view that can be modified. Caveats abound in using views this way.<br clear="all"><br>-- <br>Joel Witherspoon<br><br>LinkedIn: <a href="http://www.linkedin.com/in/jcwitherspoon">http://www.linkedin.com/in/jcwitherspoon</a><br>
<br>Facebook: <a href="http://www.facebook.com/joel.witherspoon">http://www.facebook.com/joel.witherspoon</a><br><br>Skype: joel.witherspoon<br>