Siapkan beberapa 'grup koneksi' untuk setiap server di file konfigurasi database.php Anda, lalu di Model:
$DB1 = $this->load->database('group_one', TRUE);
$DB2 = $this->load->database('group_two', TRUE);
//read from DB1
$DB1->query();
//write to DB2
$DB2->insert();
Lihat contoh di:Menghubungkan ke Beberapa Database