User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:47:53Zhttp://stackoverflow.com/feeds/user/15425http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn9How to setup access control in SVN?c5ask2008-09-17T09:12:16Z2009-11-25T00:43:10Z
<p>I have setup a repository using SVN and uploaded projects. There are multiple users working on these projects. But, not everyone is working on all projects and require access. I want to setup permissioning for each of the projects with users.</p>
<p>How to achieve this?</p>
http://stackoverflow.com/questions/128232/how-to-define-persistent-variable-in-sqlplus0How to define persistent variable in SQL*PLUSc5ask2008-09-24T16:33:01Z2009-09-30T18:31:34Z
<p>I am trying to do the following in SQL* PLUS in ORACLE.</p>
<p>-Create a variable
-Pass it as output variable to my method invocation
-Print the value from output variable</p>
<p>I get the error "undeclared variable" error. I am trying to create a variable that persists in the session till i close the SQL*PLUS window.</p>
<pre><code>variable subhandle number;
exec MYMETHOD -
(CHANGE_SET => 'SYNC_SET', -
DESCRIPTION => 'Change data for emp', -
SUBSCRIPTION_HANDLE => :subhandle);
print subhandle;
</code></pre>
http://stackoverflow.com/questions/114728/how-to-find-rowsize-in-table0how to find rowsize in tablec5ask2008-09-22T13:01:16Z2008-09-22T13:54:53Z
<p>One of my DBs have grown closer to permitted size.</p>
<p>Inorder to find out the table containing the max data, i used the following query:</p>
<p>exec sp_MSforeachtable @command1="print '?' exec sp_spaceused '?'"</p>
<p>It returned the culprit table comprising the max data.</p>
<p>As a next step, i want to cleanup the rows based on the size. For this, i would like to order the rows based on size.</p>
<p>How to achieve this using a query? Are there any tools to do this?</p>
http://stackoverflow.com/questions/114728/how-to-find-rowsize-in-table/114827#114827Comment by on how to find rowsize in table2008-09-22T13:24:05Z2008-09-22T13:24:05ZExactly. The table in question is EventLog table. I certainly don't want to delete all the rows, but the ones in descending order of size.