diff --git a/manual/docs/Transactions - Isolation levels.php b/manual/docs/Transactions - Isolation levels.php
new file mode 100644
index 000000000..3651fa063
--- /dev/null
+++ b/manual/docs/Transactions - Isolation levels.php
@@ -0,0 +1,31 @@
+
+A transaction isolation level sets the default transactional behaviour.
+As the name 'isolation level' suggests, the setting determines how isolated each transation is,
+or what kind of locks are associated with queries inside a transaction.
+The four availible levels are (in ascending order of strictness):
+
+READ UNCOMMITTED: Barely transactional, this setting allows for so-called 'dirty reads',
+where queries inside one transaction are affected by uncommitted changes in another transaction.
+
+READ COMMITTED: Committed updates are visible within another transaction.
+ This means identical queries within a transaction can return differing results. This is the default in some DBMS's.
+
+REPEATABLE READ: Within a transaction, all reads are consistent. This is the default of Mysql INNODB engine.
+
+SERIALIZABLE: Updates are not permitted in other transactions if a transaction has run an ordinary SELECT query.
+
+transaction; // get the transaction module
+
+// sets the isolation level to READ COMMITTED
+\$tx->setIsolation('READ COMMITTED');
+
+// sets the isolation level to SERIALIZABLE
+\$tx->setIsolation('SERIALIZABLE');
+
+// Some drivers (like Mysql) support the fetching of current transaction
+// isolation level. It can be done as follows:
+\$level = \$tx->getIsolation();
+?>");
+?>
diff --git a/manual/docs/Transactions - Savepoints.php b/manual/docs/Transactions - Savepoints.php
new file mode 100644
index 000000000..9bd027f28
--- /dev/null
+++ b/manual/docs/Transactions - Savepoints.php
@@ -0,0 +1,56 @@
+
+Doctrine supports transaction savepoints. This means you can set named transactions and have them nested.
+
+The Doctrine_Transaction::beginTransaction($savepoint) sets a named transaction savepoint with a name of $savepoint.
+If the current transaction has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+beginTransaction();
+ // do some operations here
+
+ // creates a new savepoint called mysavepoint
+ \$conn->beginTransaction('mysavepoint');
+ try {
+ // do some operations here
+
+ \$conn->commit('mysavepoint');
+ } catch(Exception \$e) {
+ \$conn->rollback('mysavepoint');
+ }
+ \$conn->commit();
+} catch(Exception \$e) {
+ \$conn->rollback();
+}
+?>");
+?>
+
+
+The Doctrine_Transaction::rollback($savepoint) rolls back a transaction to the named savepoint.
+Modifications that the current transaction made to rows after the savepoint was set are undone in the rollback.
+
+NOTE: Mysql, for example, does not release the row locks that were stored in memory after the savepoint.
+
+Savepoints that were set at a later time than the named savepoint are deleted.
+
+The Doctrine_Transaction::commit($savepoint) removes the named savepoint from the set of savepoints of the current transaction.
+
+All savepoints of the current transaction are deleted if you execute a commit or rollback is being called without savepoint name parameter.
+beginTransaction();
+ // do some operations here
+
+ // creates a new savepoint called mysavepoint
+ \$conn->beginTransaction('mysavepoint');
+
+ // do some operations here
+
+ \$conn->commit(); // deletes all savepoints
+} catch(Exception \$e) {
+ \$conn->rollback(); // deletes all savepoints
+}
+?>");
+?>