User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:47:53Z http://stackoverflow.com/feeds/user/15425 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn 9 How to setup access control in SVN? c5ask 2008-09-17T09:12:16Z 2009-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-sqlplus 0 How to define persistent variable in SQL*PLUS c5ask 2008-09-24T16:33:01Z 2009-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 =&gt; 'SYNC_SET', - DESCRIPTION =&gt; 'Change data for emp', - SUBSCRIPTION_HANDLE =&gt; :subhandle); print subhandle; </code></pre> http://stackoverflow.com/questions/114728/how-to-find-rowsize-in-table 0 how to find rowsize in table c5ask 2008-09-22T13:01:16Z 2008-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#114827 Comment by on how to find rowsize in table 2008-09-22T13:24:05Z 2008-09-22T13:24:05Z Exactly. 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.