解决了这个问题,方法如下:
从 Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options 断开
C:\Documents and Settings\yc>sqlplus sys/abcd as sysd...
分类:
其他好文 时间:
2014-08-05 19:32:20
阅读次数:
375
1,A,调试机。B,被调试机。2,在B机上安装windbg,公共符号文件,程序的PDB都要复制过来。公共符号文件位置设置在于A机相同的位置。windbg–server tcp:port=5699 xxx.exe 3,在A机上windbg –remote tcp:port=5699,server=19...
分类:
数据库 时间:
2014-08-04 21:14:38
阅读次数:
297
Using the CREATE DATABASE Statement to Create a CDBThis section describes creating a CDB using theCREATEDATABASESQL statement.Note:Oracle strongly rec...
分类:
数据库 时间:
2014-07-31 20:25:27
阅读次数:
507
Creating and Removing PDBs with SQL*PlusThis chapter contains the following topics:About Creating and Removing PDBsPreparing for PDBsCreating a PDB Us...
分类:
数据库 时间:
2014-07-31 20:24:57
阅读次数:
463
Below tables contains contant you need to consider while planning for a CDB.ActionConsiderations for a CDBAdditional InformationPlan the tables and in...
分类:
数据库 时间:
2014-07-31 20:06:07
阅读次数:
401
About oracle mulittenant environmentThe multitenant architecture enables an Oracle database to function as a multitenant container database (CDB) that...
分类:
数据库 时间:
2014-07-31 13:07:46
阅读次数:
321
主库部分
开启归档,force logging
SQL> archive log list
SQL> shutdown immediate
SQL> startup mount
SQL> alter database archivelog;
SQL> shutdown immediate
SQL> startup
SQL> alter database force...
分类:
数据库 时间:
2014-07-30 17:30:24
阅读次数:
389
CREATE TRIGGER open_all_pdbs AFTER STARTUP ON DATABASEBEGIN EXECUTE IMMEDIATE 'alter pluggable database all open';END open_all_pdbs;/alter plugg...
分类:
数据库 时间:
2014-07-21 10:01:55
阅读次数:
206
我们都都知道在controlfile中记录着每一个archivelog的相关信息,当然们在OS下把这些物理文件delete掉后,在我们的controlfile中仍然记录着这些archivelog的信息,在oracle的OEM管理器中有可视化的日志展现出,当我们手工清除archive目录下的文件后,这...
分类:
数据库 时间:
2014-07-21 10:00:18
阅读次数:
339
方法一:借助auto、decltype、unique_ptr、Lambda表达式构造 sqlite3 *db = NULL; auto deleter = [](sqlite3 *pdb){sqlite3_close(pdb);} int nRet = sqlite3_open16(L"F:\\my...
分类:
编程语言 时间:
2014-07-16 22:59:07
阅读次数:
385