Change set usage

Hi Team,

How many change set can we use in single XML file. what is the Limit

Like below: here i have used 2 change set.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
    xmlns=“http://www.liquibase.org/xml/ns/dbchangelog
    xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance
    xmlns:ext=“http://www.liquibase.org/xml/ns/dbchangelog-ext
    xsi:schemaLocation=“http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd
    http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd”>
   
   
        First table
       
            update query;
       
       
            rollback query for update query
       
   
   
        second table
       
            update query;
       
       
            rollback query for update query
           
   






There is no arbitrary limit. If you have huge changelogs (thousands of changeSets) you may run into memory constraints but nothing liquibase imposes.


Nathan