diff --git a/system/database/drivers/oci8/oci8_result.php b/system/database/drivers/oci8/oci8_result.php
index 59adda7..30c023d 100644
--- a/system/database/drivers/oci8/oci8_result.php
+++ b/system/database/drivers/oci8/oci8_result.php
@@ -46,9 +46,9 @@
         $rowcount = count($this->result_array);
         @ociexecute($this->stmt_id);
         if ($this->curs_id)
-            {
-            @ociexecute($this->curs_id);
-            }
+		{
+			@ociexecute($this->curs_id);
+		}
         return $rowcount;
     }
 
diff --git a/system/database/drivers/oci8/oci8_utility.php b/system/database/drivers/oci8/oci8_utility.php
index b1d539a..96be095 100644
--- a/system/database/drivers/oci8/oci8_utility.php
+++ b/system/database/drivers/oci8/oci8_utility.php
@@ -109,6 +109,21 @@
 		return return FALSE; // Is this supported in Oracle?
 	}
 
+	// --------------------------------------------------------------------
+
+	/**
+	 * Oracle Export
+	 *
+	 * @access	private
+	 * @param	array	Preferences
+	 * @return	mixed
+	 */
+	function _backup($params = array())
+	{
+		// Currently unsupported
+		return $this->db->display_error('db_unsuported_feature');
+	}
+
 }
 
 ?>
\ No newline at end of file