Oracle 12.2 dbca静默方式加响应文件建库时的log

前端之家收集整理的这篇文章主要介绍了Oracle 12.2 dbca静默方式加响应文件建库时的log前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. Microsoft Windows [版本 10.0.15063]
  2. (c) 2017 Microsoft Corporation。保留所有权利。
  3.  
  4. C:\Windows\system32>dbca -silent -createdatabase -responsefile d:\dbca.rsp
  5. 输入 SYS 用户口令:
  6.  
  7. 输入 SYSTEM 用户口令:
  8.  
  9. 输入 PDBADMIN 用户口令:
  10.  
  11. 输入 Oracle 主目录用户口令:
  12.  
  13. [WARNING] [DBT-06208] 输入的 'SYS(S)' 口令未遵从 Oracle 建议的标准。
  14. 原因:
  15. a. Oracle 建议,输入的口令长度不应少于 8 个字符,至少包含 1 个大写字符,1 个小写字符和 1 个数字 [0-9]。
  16. b. 输入的口令是一个关键字,Oracle 建议不要将其用作口令
  17. 操作: 指定强口令。如果需要,请参阅 Oracle 文档以了解相关指南。
  18. [WARNING] [DBT-06208] 输入的 'SYSTEM' 口令未遵从 Oracle 建议的标准。
  19. 原因:
  20. a. Oracle 建议,请参阅 Oracle 文档以了解相关指南。
  21. [WARNING] [DBT-06208] 输入的 'PDBADMIN' 口令未遵从 Oracle 建议的标准。
  22. 原因:
  23. a. Oracle 建议,请参阅 Oracle 文档以了解相关指南。
  24. 复制数据库文件
  25. 1%已完成
  26. 13%已完成
  27. 25%已完成
  28. 正在创建并启动 Oracle 实例
  29. 26%已完成
  30. 30%已完成
  31. 31%已完成
  32. 35%已完成
  33. 38%已完成
  34. 39%已完成
  35. 41%已完成
  36. 正在进行数据库创建
  37. 42%已完成
  38. 43%已完成
  39. 44%已完成
  40. 46%已完成
  41. 49%已完成
  42. 50%已完成
  43. 正在创建插接式数据库
  44. 55%已完成
  45. 60%已完成
  46. 65%已完成
  47. 70%已完成
  48. 75%已完成
  49. 执行配置后操作
  50. 100%已完成
  51. 有关详细信息,请参阅日志文件 "D:\app\dbuser\cfgtoollogs\dbca\orcl\orcl2.log"
  52.  
  53. C:\Windows\system32>

dbca.rsp的内容如下:
  1. ##############################################################################
  2. ## ##
  3. ## DBCA response file ##
  4. ## ------------------ ##
  5. ## Copyright(c) Oracle Corporation 1998,2017. All rights reserved. ##
  6. ## ##
  7. ## Specify values for the variables listed below to customize ##
  8. ## your installation. ##
  9. ## ##
  10. ## Each variable is associated with a comment. The comment ##
  11. ## can help to populate the variables with the appropriate ##
  12. ## values. ##
  13. ## ##
  14. ## IMPORTANT NOTE: This file contains plain text passwords and ##
  15. ## should be secured to have read permission only by oracle user ##
  16. ## or db administrator who owns this installation. ##
  17. ##############################################################################
  18. #-------------------------------------------------------------------------------
  19. # Do not change the following system generated value.
  20. #-------------------------------------------------------------------------------
  21. responseFileVersion=/oracle/assistants/rspfmt_dbca_response_schema_v12.2.0
  22.  
  23. #-----------------------------------------------------------------------------
  24. # Name : gdbName
  25. # Datatype : String
  26. # Description : Global database name of the database
  27. # Valid values : <db_name>.<db_domain> - when database domain isn't NULL
  28. # <db_name> - when database domain is NULL
  29. # Default value : None
  30. # Mandatory : Yes
  31. #-----------------------------------------------------------------------------
  32. gdbName=orcl
  33.  
  34. #-----------------------------------------------------------------------------
  35. # Name : sid
  36. # Datatype : String
  37. # Description : System identifier (SID) of the database
  38. # Valid values : Check Oracle12c Administrator's Guide
  39. # Default value : <db_name> specified in GDBNAME
  40. # Mandatory : No
  41. #-----------------------------------------------------------------------------
  42. sid=orcl
  43.  
  44. #-----------------------------------------------------------------------------
  45. # Name : databaseConfigType
  46. # Datatype : String
  47. # Description : database conf type as Single Instance,Real Application Cluster or Real Application Cluster One Nodes database
  48. # Valid values : SI\RAC\RACONENODE
  49. # Default value : SI
  50. # Mandatory : No
  51. #-----------------------------------------------------------------------------
  52. databaseConfigType=SI
  53.  
  54. #-----------------------------------------------------------------------------
  55. # Name : RACOneNodeServiceName
  56. # Datatype : String
  57. # Description : Service is required by application to connect to RAC One
  58. # Node Database
  59. # Valid values : Service Name
  60. # Default value : None
  61. # Mandatory : No [required in case DATABASECONFTYPE is set to RACONENODE ]
  62. #-----------------------------------------------------------------------------
  63. RACOneNodeServiceName=
  64.  
  65. #-----------------------------------------------------------------------------
  66. # Name : policyManaged
  67. # Datatype : Boolean
  68. # Description : Set to true if Database is policy managed and
  69. # set to false if Database is admin managed
  70. # Valid values : TRUE\FALSE
  71. # Default value : FALSE
  72. # Mandatory : No
  73. #-----------------------------------------------------------------------------
  74. policyManaged=false
  75.  
  76.  
  77. #-----------------------------------------------------------------------------
  78. # Name : createServerPool
  79. # Datatype : Boolean
  80. # Description : Set to true if new server pool need to be created for database
  81. # if this option is specified then the newly created database
  82. # will use this newly created serverpool.
  83. # Multiple serverpoolname can not be specified for database
  84. # Valid values : TRUE\FALSE
  85. # Default value : FALSE
  86. # Mandatory : No
  87. #-----------------------------------------------------------------------------
  88. createServerPool=false
  89.  
  90. #-----------------------------------------------------------------------------
  91. # Name : serverPoolName
  92. # Datatype : String
  93. # Description : Only one serverpool name need to be specified
  94. # if Create Server Pool option is specified.
  95. # Comma-separated list of Serverpool names if db need to use
  96. # multiple Server pool
  97. # Valid values : ServerPool name
  98.  
  99. # Default value : None
  100. # Mandatory : No [required in case of RAC service centric database]
  101. #-----------------------------------------------------------------------------
  102. serverPoolName=
  103.  
  104. #-----------------------------------------------------------------------------
  105. # Name : cardinality
  106. # Datatype : Number
  107. # Description : Specify Cardinality for create server pool operation
  108.  
  109. # Valid values : any positive Integer value
  110. # Default value : Number of qualified nodes on cluster
  111. # Mandatory : No [required when a new serverpool need to be created]
  112. #-----------------------------------------------------------------------------
  113. cardinality=
  114.  
  115. #-----------------------------------------------------------------------------
  116. # Name : force
  117. # Datatype : Boolean
  118. # Description : Set to true if new server pool need to be created by force
  119. # if this option is specified then the newly created serverpool
  120. # will be assigned server even if no free servers are available.
  121. # This may affect already running database.
  122. # This flag can be specified for Admin managed as well as policy managed db.
  123. # Valid values : TRUE\FALSE
  124. # Default value : FALSE
  125. # Mandatory : No
  126. #-----------------------------------------------------------------------------
  127. force=false
  128.  
  129. #-----------------------------------------------------------------------------
  130. # Name : pqPoolName
  131. # Datatype : String
  132. # Description : Only one serverpool name needs to be specified
  133. # if create server pool option is specified.
  134. # Comma-separated list of serverpool names if use
  135. # server pool. This is required to
  136. # create Parallel Query (PQ) database. Applicable to Big Cluster
  137. # Valid values : Parallel Query (PQ) pool name
  138. # Default value : None
  139. # Mandatory : No [required in case of RAC service centric database]
  140. #-----------------------------------------------------------------------------
  141. pqPoolName=
  142.  
  143. #-----------------------------------------------------------------------------
  144. # Name : pqCardinality
  145. # Datatype : Number
  146. # Description : Specify Cardinality for create server pool operation.
  147. # Applicable to Big Cluster
  148. # Valid values : any positive Integer value
  149. # Default value : Number of qualified nodes on cluster
  150. # Mandatory : No [required when a new serverpool need to be created]
  151. #-----------------------------------------------------------------------------
  152. pqCardinality=
  153.  
  154. #-----------------------------------------------------------------------------
  155. # Name : createAsContainerDatabase
  156. # Datatype : boolean
  157. # Description : flag to create database as container database
  158. # Valid values : Check Oracle12c Administrator's Guide
  159. # Default value : false
  160. # Mandatory : No
  161. #-----------------------------------------------------------------------------
  162. createAsContainerDatabase=true
  163.  
  164. #-----------------------------------------------------------------------------
  165. # Name : numberOfPDBs
  166. # Datatype : Number
  167. # Description : Specify the number of pdb to be created
  168. # Valid values : 0 to 252
  169. # Default value : 0
  170. # Mandatory : No
  171. #-----------------------------------------------------------------------------
  172. numberOfPDBs=5
  173.  
  174. #-----------------------------------------------------------------------------
  175. # Name : pdbName
  176. # Datatype : String
  177. # Description : Specify the pdbname/pdbanme prefix if one or more pdb need to be created
  178. # Valid values : Check Oracle12c Administrator's Guide
  179. # Default value : None
  180. # Mandatory : No
  181. #-----------------------------------------------------------------------------
  182. pdbName=orclpdb
  183.  
  184. #-----------------------------------------------------------------------------
  185. # Name : useLocalUndoForPDBs
  186. # Datatype : boolean
  187. # Description : Flag to create local undo tablespace for all PDB's.
  188. # Valid values : TRUE\FALSE
  189. # Default value : TRUE
  190. # Mandatory : No
  191. #-----------------------------------------------------------------------------
  192. useLocalUndoForPDBs=true
  193.  
  194. #-----------------------------------------------------------------------------
  195. # Name : pdbAdminPassword
  196. # Datatype : String
  197. # Description : PDB Administrator user password
  198. # Valid values : Check Oracle12c Administrator's Guide
  199. # Default value : None
  200. # Mandatory : No
  201. #-----------------------------------------------------------------------------
  202.  
  203. pdbAdminPassword=
  204.  
  205. #-----------------------------------------------------------------------------
  206. # Name : nodelist
  207. # Datatype : String
  208. # Description : Comma-separated list of cluster nodes
  209. # Valid values : Cluster node names
  210. # Default value : None
  211. # Mandatory : No (Yes for RAC database-centric database )
  212. #-----------------------------------------------------------------------------
  213. nodelist=
  214.  
  215. #-----------------------------------------------------------------------------
  216. # Name : templateName
  217. # Datatype : String
  218. # Description : Name of the template
  219. # Valid values : Template file name
  220. # Default value : None
  221. # Mandatory : Yes
  222. #-----------------------------------------------------------------------------
  223. templateName=D:\app\dbuser\product\12.2.0\dbhome_1\assistants\dbca\templates\General_Purpose.dbc
  224.  
  225. #-----------------------------------------------------------------------------
  226. # Name : sysPassword
  227. # Datatype : String
  228. # Description : Password for SYS user
  229. # Valid values : Check Oracle12c Administrator's Guide
  230. # Default value : None
  231. # Mandatory : Yes
  232. #-----------------------------------------------------------------------------
  233. sysPassword=
  234.  
  235. #-----------------------------------------------------------------------------
  236. # Name : systemPassword
  237. # Datatype : String
  238. # Description : Password for SYSTEM user
  239. # Valid values : Check Oracle12c Administrator's Guide
  240. # Default value : None
  241. # Mandatory : Yes
  242. #-----------------------------------------------------------------------------
  243. systemPassword=
  244.  
  245. #-----------------------------------------------------------------------------
  246. # Name : serviceUserPassword
  247. # Datatype : String
  248. # Description : Password for Windows Service user
  249. # Default value : None
  250. # Mandatory : If Oracle home is installed with windows service user
  251. #-----------------------------------------------------------------------------
  252. serviceUserPassword=
  253.  
  254. #-----------------------------------------------------------------------------
  255. # Name : emConfiguration
  256. # Datatype : String
  257. # Description : Enterprise Manager Configuration Type
  258. # Valid values : CENTRAL|DBEXPRESS|BOTH|NONE
  259. # Default value : NONE
  260. # Mandatory : No
  261. #-----------------------------------------------------------------------------
  262. emConfiguration=
  263.  
  264. #-----------------------------------------------------------------------------
  265. # Name : emExpressPort
  266. # Datatype : Number
  267. # Description : Enterprise Manager Configuration Type
  268. # Valid values : Check Oracle12c Administrator's Guide
  269. # Default value : NONE
  270. # Mandatory : No,will be picked up from DBEXPRESS_HTTPS_PORT env variable
  271. # or auto generates a free port between 5500 and 5599
  272. #-----------------------------------------------------------------------------
  273. emExpressPort=5500
  274.  
  275. #-----------------------------------------------------------------------------
  276. # Name : runCVUChecks
  277. # Datatype : Boolean
  278. # Description : Specify whether to run Cluster Verification Utility checks
  279. # periodically in Cluster environment
  280. # Valid values : TRUE\FALSE
  281. # Default value : FALSE
  282. # Mandatory : No
  283. #-----------------------------------------------------------------------------
  284. runCVUChecks=false
  285.  
  286. #-----------------------------------------------------------------------------
  287. # Name : dbsnmpPassword
  288. # Datatype : String
  289. # Description : Password for DBSNMP user
  290. # Valid values : Check Oracle12c Administrator's Guide
  291. # Default value : None
  292. # Mandatory : Yes,if emConfiguration is specified or
  293. # the value of runCVUChecks is TRUE
  294. #-----------------------------------------------------------------------------
  295. dbsnmpPassword=
  296.  
  297. #-----------------------------------------------------------------------------
  298. # Name : omsHost
  299. # Datatype : String
  300. # Description : EM management server host name
  301. # Default value : None
  302. # Mandatory : Yes,if CENTRAL is specified for emConfiguration
  303. #-----------------------------------------------------------------------------
  304. omsHost=
  305.  
  306. #-----------------------------------------------------------------------------
  307. # Name : omsPort
  308. # Datatype : Number
  309. # Description : EM management server port number
  310. # Default value : None
  311. # Mandatory : Yes,if CENTRAL is specified for emConfiguration
  312. #-----------------------------------------------------------------------------
  313. omsPort=0
  314.  
  315. #-----------------------------------------------------------------------------
  316. # Name : emUser
  317. # Datatype : String
  318. # Description : EM Admin username to add or modify targets
  319. # Default value : None
  320. # Mandatory : Yes,if CENTRAL is specified for emConfiguration
  321. #-----------------------------------------------------------------------------
  322. emUser=
  323.  
  324. #-----------------------------------------------------------------------------
  325. # Name : emPassword
  326. # Datatype : String
  327. # Description : EM Admin user password
  328. # Default value : None
  329. # Mandatory : Yes,if CENTRAL is specified for emConfiguration
  330. #-----------------------------------------------------------------------------
  331. emPassword=
  332.  
  333. #-----------------------------------------------------------------------------
  334. # Name : dvConfiguration
  335. # Datatype : Boolean
  336. # Description : Specify "True" to configure and enable Oracle Database vault
  337. # Valid values : True/False
  338. # Default value : False
  339. # Mandatory : No
  340. #-----------------------------------------------------------------------------
  341. dvConfiguration=false
  342.  
  343. #-----------------------------------------------------------------------------
  344. # Name : dvUserName
  345. # Datatype : String
  346. # Description : DataVault Owner
  347. # Valid values : Check Oracle12c Administrator's Guide
  348. # Default value : None
  349. # Mandatory : Yes,if DataVault option is chosen
  350. #-----------------------------------------------------------------------------
  351. dvUserName=
  352.  
  353. #-----------------------------------------------------------------------------
  354. # Name : dvUserPassword
  355. # Datatype : String
  356. # Description : Password for DataVault Owner
  357. # Valid values : Check Oracle12c Administrator's Guide
  358. # Default value : None
  359. # Mandatory : Yes,if DataVault option is chosen
  360. #-----------------------------------------------------------------------------
  361. dvUserPassword=
  362.  
  363. #-----------------------------------------------------------------------------
  364. # Name : dvAccountManagerName
  365. # Datatype : String
  366. # Description : DataVault Account Manager
  367. # Valid values : Check Oracle12c Administrator's Guide
  368. # Default value : None
  369. # Mandatory : No
  370. #-----------------------------------------------------------------------------
  371. dvAccountManagerName=
  372.  
  373. #-----------------------------------------------------------------------------
  374. # Name : dvAccountManagerPassword
  375. # Datatype : String
  376. # Description : Password for DataVault Account Manager
  377. # Valid values : Check Oracle12c Administrator's Guide
  378. # Default value : None
  379. # Mandatory : No
  380. #-----------------------------------------------------------------------------
  381. dvAccountManagerPassword=
  382.  
  383. #-----------------------------------------------------------------------------
  384. # Name : olsConfiguration
  385. # Datatype : Boolean
  386. # Description : Specify "True" to configure and enable Oracle Label Security
  387. # Valid values : True/False
  388. # Default value : False
  389. # Mandatory : No
  390. #-----------------------------------------------------------------------------
  391. olsConfiguration=false
  392.  
  393. #-----------------------------------------------------------------------------
  394. # Name : datafileJarLocation
  395. # Datatype : String
  396. # Description : Location of the data file jar
  397. # Valid values : Directory containing compressed datafile jar
  398. # Default value : None
  399. # Mandatory : No
  400. #-----------------------------------------------------------------------------
  401. datafileJarLocation={ORACLE_HOME}\assistants\dbca\templates\
  402.  
  403. #-----------------------------------------------------------------------------
  404. # Name : datafileDestination
  405. # Datatype : String
  406. # Description : Location of the data file's
  407. # Valid values : Directory for all the database files
  408. # Default value : $ORACLE_BASE/oradata
  409. # Mandatory : No
  410. #-----------------------------------------------------------------------------
  411. datafileDestination=d:\oracle\oradata\{DB_UNIQUE_NAME}\
  412.  
  413. #-----------------------------------------------------------------------------
  414. # Name : recoveryAreaDestination
  415. # Datatype : String
  416. # Description : Location of the data file's
  417. # Valid values : Recovery Area location
  418. # Default value : $ORACLE_BASE/flash_recovery_area
  419. # Mandatory : No
  420. #-----------------------------------------------------------------------------
  421. recoveryAreaDestination=d:\oracle\\fast_recovery_area\{DB_UNIQUE_NAME}
  422.  
  423. #-----------------------------------------------------------------------------
  424. # Name : storageType
  425. # Datatype : String
  426. # Description : Specifies the storage on which the database is to be created
  427. # Valid values : FS (CFS for RAC),ASM
  428. # Default value : FS
  429. # Mandatory : No
  430. #-----------------------------------------------------------------------------
  431. storageType=FS
  432.  
  433. #-----------------------------------------------------------------------------
  434. # Name : diskGroupName
  435. # Datatype : String
  436. # Description : Specifies the disk group name for the storage
  437. # Default value : DATA
  438. # Mandatory : No
  439. #-----------------------------------------------------------------------------
  440. diskGroupName=
  441.  
  442. #-----------------------------------------------------------------------------
  443. # Name : asmsnmpPassword
  444. # Datatype : String
  445. # Description : Password for ASM Monitoring
  446. # Default value : None
  447. # Mandatory : No
  448. #-----------------------------------------------------------------------------
  449. asmsnmpPassword=
  450.  
  451. #-----------------------------------------------------------------------------
  452. # Name : recoveryGroupName
  453. # Datatype : String
  454. # Description : Specifies the disk group name for the recovery area
  455. # Default value : RECOVERY
  456. # Mandatory : No
  457. #-----------------------------------------------------------------------------
  458. recoveryGroupName=
  459.  
  460. #-----------------------------------------------------------------------------
  461. # Name : characterSet
  462. # Datatype : String
  463. # Description : Character set of the database
  464. # Valid values : Check Oracle12c National Language Support Guide
  465. # Default value : "US7ASCII"
  466. # Mandatory : NO
  467. #-----------------------------------------------------------------------------
  468. characterSet=AL32UTF8
  469.  
  470. #-----------------------------------------------------------------------------
  471. # Name : nationalCharacterSet
  472. # Datatype : String
  473. # Description : National Character set of the database
  474. # Valid values : "UTF8" or "AL16UTF16". For details,check Oracle12c National Language Support Guide
  475. # Default value : "AL16UTF16"
  476. # Mandatory : No
  477. #-----------------------------------------------------------------------------
  478. nationalCharacterSet=AL16UTF16
  479.  
  480. #-----------------------------------------------------------------------------
  481. # Name : registerWithDirService
  482. # Datatype : Boolean
  483. # Description : Specifies whether to register with Directory Service.
  484. # Valid values : TRUE \ FALSE
  485. # Default value : FALSE
  486. # Mandatory : No
  487. #-----------------------------------------------------------------------------
  488. registerWithDirService=false
  489.  
  490.  
  491. #-----------------------------------------------------------------------------
  492. # Name : dirServiceUserName
  493. # Datatype : String
  494. # Description : Specifies the name of the directory service user
  495. # Mandatory : YES,if the value of registerWithDirService is TRUE
  496. #-----------------------------------------------------------------------------
  497. dirServiceUserName=
  498.  
  499. #-----------------------------------------------------------------------------
  500. # Name : dirServicePassword
  501. # Datatype : String
  502. # Description : The password of the directory service user.
  503. # You can also specify the password at the command prompt instead of here.
  504. # Mandatory : YES,if the value of registerWithDirService is TRUE
  505. #-----------------------------------------------------------------------------
  506. dirServicePassword=
  507.  
  508. #-----------------------------------------------------------------------------
  509. # Name : walletPassword
  510. # Datatype : String
  511. # Description : The password for wallet to created or modified.
  512. # You can also specify the password at the command prompt instead of here.
  513. # Mandatory : YES,if the value of registerWithDirService is TRUE
  514. #-----------------------------------------------------------------------------
  515. walletPassword=
  516.  
  517. #-----------------------------------------------------------------------------
  518. # Name : listeners
  519. # Datatype : String
  520. # Description : Specifies list of listeners to register the database with.
  521. # By default the database is configured for all the listeners specified in the
  522. # $ORACLE_HOME/network/admin/listener.ora
  523. # Valid values : The list should be comma separated like "listener1,listener2".
  524. # Mandatory : NO
  525. #-----------------------------------------------------------------------------
  526. listeners=
  527.  
  528. #-----------------------------------------------------------------------------
  529. # Name : variablesFile
  530. # Datatype : String
  531. # Description : Location of the file containing variable value pair
  532. # Valid values : A valid file-system file. The variable value pair format in this file
  533. # is <variable>=<value>. Each pair should be in a new line.
  534. # Default value : None
  535. # Mandatory : NO
  536. #-----------------------------------------------------------------------------
  537. variablesFile=
  538.  
  539. #-----------------------------------------------------------------------------
  540. # Name : variables
  541. # Datatype : String
  542. # Description : comma separated list of name=value pairs. Overrides variables defined in variablefile and templates
  543. # Default value : None
  544. # Mandatory : NO
  545. #-----------------------------------------------------------------------------
  546. variables=DB_UNIQUE_NAME=orcl,ORACLE_BASE=D:\app\dbuser,PDB_NAME=,DB_NAME=orcl,ORACLE_HOME=D:\app\dbuser\product\12.2.0\dbhome_1,SID=orcl
  547.  
  548. #-----------------------------------------------------------------------------
  549. # Name : initParams
  550. # Datatype : String
  551. # Description : comma separated list of name=value pairs. Overrides initialization parameters defined in templates
  552. # Default value : None
  553. # Mandatory : NO
  554. #-----------------------------------------------------------------------------
  555. initParams=undo_tablespace=UNDOTBS1,processes=800,db_recovery_file_dest_size=102400MB,nls_language=SIMPLIFIED CHINESE,pga_aggregate_target=810MB,sga_target=2427MB,dispatchers=(PROTOCOL=TCP) (SERVICE=orclXDB),db_recovery_file_dest=d:\oracle\\fast_recovery_area\{DB_UNIQUE_NAME},db_block_size=8192BYTES,diagnostic_dest={ORACLE_BASE},audit_file_dest={ORACLE_BASE}\admin\{DB_UNIQUE_NAME}\adump,nls_territory=CHINA,local_listener=LISTENER_ORCL,compatible=12.2.0,control_files=("d:\oracle\oradata\{DB_UNIQUE_NAME}\control01.ctl","d:\oracle\fast_recovery_area\{DB_UNIQUE_NAME}\control02.ctl"),db_name=orcl,audit_trail=db,remote_login_passwordfile=EXCLUSIVE,open_cursors=300
  556.  
  557. #-----------------------------------------------------------------------------
  558. # Name : sampleSchema
  559. # Datatype : Boolean
  560. # Description : Specifies whether or not to add the Sample Schemas to your database
  561. # Valid values : TRUE \ FALSE
  562. # Default value : FASLE
  563. # Mandatory : No
  564. #-----------------------------------------------------------------------------
  565. sampleSchema=false
  566.  
  567. #-----------------------------------------------------------------------------
  568. # Name : memoryPercentage
  569. # Datatype : String
  570. # Description : percentage of physical memory for Oracle
  571. # Default value : None
  572. # Mandatory : NO
  573. #-----------------------------------------------------------------------------
  574. memoryPercentage=40
  575.  
  576. #-----------------------------------------------------------------------------
  577. # Name : databaseType
  578. # Datatype : String
  579. # Description : used for memory distribution when memoryPercentage specified
  580. # Valid values : MULTIPURPOSE|DATA_WAREHOUSING|OLTP
  581. # Default value : MULTIPURPOSE
  582. # Mandatory : NO
  583. #-----------------------------------------------------------------------------
  584. databaseType=MULTIPURPOSE
  585.  
  586. #-----------------------------------------------------------------------------
  587. # Name : automaticMemoryManagement
  588. # Datatype : Boolean
  589. # Description : flag to indicate Automatic Memory Management is used
  590. # Valid values : TRUE/FALSE
  591. # Default value : TRUE
  592. # Mandatory : NO
  593. #-----------------------------------------------------------------------------
  594. automaticMemoryManagement=false
  595.  
  596. #-----------------------------------------------------------------------------
  597. # Name : totalMemory
  598. # Datatype : String
  599. # Description : total memory in MB to allocate to Oracle
  600. # Valid values :
  601. # Default value :
  602. # Mandatory : NO
  603. #-----------------------------------------------------------------------------
  604. totalMemory=0

猜你在找的Oracle相关文章