Month: July 2018

How to get the Tablespace details in Oracle

oracle

This article helps you to get more information about Tablespace in Oracle along with a few commands which helps in your day to day activity. How to get the list of available Tablespaces SQL> select tablespace_name, sum(bytes)/power(1024,2), sum(maxbytes)/power(1024,2), AUTOEXTENSIBLE from dba_data_files group by tablespace_name, AUTOEXTENSIBLE; This list down all the tablespaces that are available in […]

SVN Commands in Linux

svn

This article helps you to understand various SVN commands and its usage in Linux environment. How To get the location of SVN: $ whereis svnsvn: /opt/CollabNet_Subversion/bin/svn (or) $ which svnsvn: /opt/CollabNet_Subversion/bin/svn How to get the SVN help $ svn helpusage: svn <subcommand> [options] [args]Subversion command-line client, version 1.8.14.Type ‘svn help <subcommand>’ for help on a […]