Index: /trunk/grails-app/services/CreateBulkDataService.groovy
===================================================================
--- /trunk/grails-app/services/CreateBulkDataService.groovy	(revision 260)
+++ /trunk/grails-app/services/CreateBulkDataService.groovy	(revision 261)
@@ -18,6 +18,6 @@
     def propertyInstanceMap = org.codehaus.groovy.grails.plugins.DomainClassGrailsPlugin.PROPERTY_INSTANCE_MAP
 
-    def startTime = System.currentTimeMillis()
-    def lastBatchStarted = startTime
+    def startTime
+    def lastBatchStarted
 
 /*******************************************
@@ -88,5 +88,8 @@
         def personInstance
 
-        def range = 1..1000
+        def start = Person.count() + 1
+        def end = start + 100
+
+        def range = start..end
 
         def loginName = "BtLoginName"
@@ -137,5 +140,8 @@
         def p = [:]
 
-        def range = 0..40000
+        def start = Task.count() + 1
+        def end = start + 10000
+
+        def range = start..end
 
 
@@ -150,7 +156,10 @@
         def today = dateUtilService.today
 
+        startTime = System.currentTimeMillis()
+        lastBatchStarted = startTime
+
         range.each() {
 
-            if(it % 1000 == 0) {
+            if(it % 100 == 0) {
                 logStatus("Creating task #" + it)
                 cleanUpGorm()
