CMS - Sample Microsoft SQL Server, Oracle Server, Sybase ASE, IBM-DB2 and IBM-zOS SQLTABLESIZE file

<?xml version="1.0" encoding="UTF-8" ?>
<config name="SQL Table Size" version="1.0.0.0" extraction-date="2012/01/27/15/30" >

<!--SQL ANALYZER for SYBASE-->

    <sybase>
        <!-- server name can be written as HOST\INSTANCE_NAME but INSTANCE_NAME alone will also function -->
        <server name="SERVER1\SQLS2K8" >
            <!-- schema name is optional - if it is not applied, then the table row value is applied to all tables of that name in the database -->
            <schema name="schema or user name">
                <database name="cwmm">
                    <table name="ACC" rows="1000000"/>
                </database>
            </schema>
        </server>
    </sybase>

<!--SQL ANALYZER for MICROSOFT SQL SERVER-->

    <microsoft>
        <!-- server name can be written as HOST\INSTANCE_NAME but INSTANCE_NAME alone will also function -->
        <server name="SERVER1\SQLS2K8" >
            <!-- schema name is optional - if it is not applied, then the table row value is applied to all tables of that name in the database -->
            <schema name="schema or user name">
                <database name="cwmm">
                    <table name="ACC" rows="1000000"/>
                </database>
            </schema>
        </server>
    </microsoft>

<!--SQL ANALYZER for ORACLE SERVER-->

    <oracle castformat="7.0">
        <server name="Bordeaux" >
            <schema name="cwmm">
                <table name="ACC" rows="1000000"/>
                <table name="KEYS" rows="1000000"/>
            </schema>
            <schema name="CWM1610">
                <table name="ACC" rows="1000000"/>
                <table name="KEYS" rows="1000000"/>
            </schema>
        </server>
    </oracle>

<!--IBM DB2-UDB-->

    <ibm-udb>
        <server name="Bordeaux" >
            <schema name="cwmm">
                <table name="ACC" rows="1000000"/>
            </schema>
        </server>
    </ibm-udb>

<!--IBM DB2 z/OS-->

    <ibm-zos>
        <server name="Bordeaux" >
                <schema name="cwmm">
                    <table name="ACC" rows="1000000"/>
                </schema>
        </server>
    </ibm-zos>

</config>