Oracle原始导出数据库版本支持

时间:2016-11-02 09:05:43

标签: oracle oracle12c expdp oracle-export-dump

我正在尝试在Windows Server 2012R2上导出可插拔的12c Oracle数据库。我通常使用exp代替EXP-00058 Password Verify Function for ORA_STIG_PROFILE profile does not exist。第一次试用给了我一个EXP-00062 invalid source statements for an object type,所以我去了指定文件here并创建了11G验证功能。第一个错误没有出现,但它给出了另一个错误: <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h3 class="page-header"><?php echo $page_header; ?></h3> </div> <!-- /.col-lg-12 --> </div> <!-- /.row --> <div class="row"> <div class="col-lg-12 col-md-6"> <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"> <?php $filter_values = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']; echo anchor("supplier/view", "All"); //make <a> tags for "A" through "Z" foreach($filter_values as $value) { echo anchor("supplier/view/{$value}", " | $value"); } ?> <br><br> <hr> <table class="table table-striped"> <thead> <tr> <th align='left'>Supplier</th> <th align='left'>Contact</th> <th align='left'>Telephone</th> <th align='left'>Email</th> <th align='left'>LPO</th> <th align='left'>Invoice</th> <th align='left'>Profile</th> </tr> </thead> </thead> <?php if(isset($suppliers)): foreach($suppliers as $supplier): ?> <tr> <td><?= $supplier->supplier; ?></td> <td><?= $supplier->contact; ?></td> <td><?= $supplier->telephone; ?></td> <td><?= $supplier->email; ?></td> <td><a href="<?php echo site_url('supplier/function') ?>"><i class="fa fa-file-text-o" aria-hidden="true"></i></a></td> <td><a href="<?php echo site_url('supplier/function') ?>"><i class="fa fa-arrow-circle-right" aria-hidden="true"></i></a></td> <td><a href="<?php echo site_url('supplier/function') ?>"><i class="fa fa-user" aria-hidden="true"></i></a></td> </tr> <?php endforeach; else: $msg = isset($filter) ? "No supplier names starting with the letter $filter." : "No Suppliers found."; echo "<td>$msg</td>"; endif; ?> </table> </div><!-- panel-group --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /#page-wrapper --> 并且对于我的生活,我不知道这是什么对象。问题是:我应该放弃整个事情,因为原始导出不支持12c或是否有解决此问题的方法?

0 个答案:

没有答案