Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/lsp4you/public_html/connect.php on line 2 LSP4YOU - Learner's Support Publications

Serialisable Schedule

A schedule S of n transactions is serialisable if it is equivalent to some serial schedule of the same ā€˜nā€™ transactions.

A serial schedule is a schedule in which either transaction T1 is completely done before T2 or transaction T2 is completely done before T1.

Any schedule that produces the same results as a serial schedule is called a serialisable schedule.

There are two possible serial schedule in case of two transactions (T1 and T2). That is T1-T2 or T2-T1. Similarly, in case of three parallel transactions the number of possible serial schedule is 3!, that is 6.
These serial schedules can be:
T1-T2-T3	T1-T3-T2
T2-T1-T3	T2-T3-T1
T3-T1-T2	T3-T2-T1