Index: initial-data.txt
===================================================================
--- initial-data.txt	(révision 16341)
+++ initial-data.txt	(copie de travail)
@@ -116,11 +116,21 @@
 </ref/django-admin>`. Refer to the :doc:`manage.py documentation
 </ref/django-admin>` for more information.
 
-Note that if you have multiple SQL data files, there's no guarantee of
-the order in which they're executed. The only thing you can assume is
-that, by the time your custom data files are executed, all the
-database tables already will have been created.
+SQL data files are executed in the same order than their ordering 
+in the fixtures.
 
+For example:
+
+fixtures = ['foo','bar','baz']
+foo will be executed first then bar, then baz.
+
+However, fixtures are not loaded for one application but for any
+applications which contains this fixture.
+
+Therefore, you should also take into account the order in which application
+are defined.
+
+
 .. admonition:: Initial SQL data and testing
 
     This technique *cannot* be used to provide initial data for
