Skip to content
Snippets Groups Projects
Commit 01f7a2b3 authored by Steven Murray's avatar Steven Murray
Browse files

Moved 'ALTER SESSION SET recyclebin = OFF' to drop_oracle_catalogue_schema.sql

parent 2b988957
Branches
Tags
No related merge requests found
ALTER SESSION SET recyclebin = OFF;
DROP TABLE CTA_CATALOGUE;
DROP TABLE ARCHIVE_ROUTE;
DROP TABLE TAPE_FILE;
......
......@@ -38,13 +38,6 @@ OcciConn::OcciConn(oracle::occi::Environment *const env, oracle::occi::Connectio
throw exception::Exception(std::string(__FUNCTION__) + " failed"
": The OCCI connection is a nullptr pointer");
}
try {
const std::string sql = "ALTER SESSION SET recyclebin = OFF";
executeNonQuery(sql, Stmt::AutocommitMode::OFF);
} catch(exception::Exception &ex) {
throw exception::Exception(std::string(__FUNCTION__) + " failed: " + ex.getMessage().str());
}
}
//------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment