You are on page 1of 3

27/1/2015

Oracle11gmanualconfiguration

IBMControlDesk,Version7.5.3

Manuallyconfiguring Oracle11g
UsethefollowinginstructionstomanuallyconfigureOracle11gforusewithControlDesk.
Beforeyoubegin
Oracleinstancenamesmustbelimitedtoeightcharactersinlength.ForOracledatabases,
theschemaownermustusethesameuserIDasthedatabaseuser.
Aboutthistask
ToconfigureanexistingOracle11gserverforusewithControlDesk,completethefollowingstepsbeforeyoustart
theControlDeskinstallationprogram:
Procedure
1. LoginastheOraclesoftwareuser.Typicallythisuserisnamedoracle.
2. Createthedatabaselistener.Thelistenermanagesrequeststoconnecttothedatabase.Thisstepisonly
requiredifyoudonotalreadyhaveanexistinglistenerinplace.
a. OpentheOracleNetworkConfigurationAssistantapplication.
b. FromtheWelcomepanel,selectListenerconfiguration,andthenclickNext.
c. Fromtheactionpanel,selectAdd,andthenclickNext.
d. Enteranameforthelisteneroracceptthedefaultvalue,andthenclickNext.
e. AcceptthedefaultSelectedProtocolslistedbyclickingNext.
f. Fromtheportpanel,selectUsethestandardportof1521,andthenclickNext.
g. SelectNotoindicatethatyouarefinishedconfiguringlisteners,andthenclickNext.
h. FromtheListenerConfigurationDonepanel,clickNext.
i. ClickFinish.
3. CreateadatabaseforusebyControlDesk.
a. OpentheOracleDatabaseConfigurationAssistant.
b. ClickNext.
c. SelectCreateaDatabase,andthenclickNext.
d. SelectGeneralPurposeorTransactionProcessing,andthenclickNext.
e. Enterctginst1forboththeGlobalDatabaseNamevalueandtheSIDvalue,andthenclickNext.
f. Leavethedefaultsselected,andclickNext.
g. EnsureUsetheSameAdministrativePasswordforAllAccountsisselected,enterapassword
forOracleusers,andthenclickNext.
h. EnsureFileSystemisselectedasthestoragemechanismtouseforthedatabase.EnsureUse
DatabaseFileLocationsfromTemplateisselectedasthevaluetousefordatabasefilelocation,
andthenclickNext.
i. Leavedefaultsselectedforthedatabaserecoveryoptionspanel,andthenclickNext.
j. FromtheSampleSchemaspanel,clickNext.
k. FromtheInitializationParameterspanel,ontheMemorytab,selectCustomandprovidethe
followingvalues(measuredinMb):
MemoryManagement
SetthisvaluetoManualSharedMemoryManagement.
SharedPool
Setthisvalueto152.
BufferCache
Setthisvalueto36.
http://www01.ibm.com/support/knowledgecenter/api/content/nl/enus/SSWT9A_7.5.3/com.ibm.sccd.inswas.doc/install/t_manconfigdboracle11.html

1/3

27/1/2015

Oracle11gmanualconfiguration

JavaPool
Setthisvalueto32.
LargePool
Setthisvalueto8.
PGASize
Setthisvalueto36.
l. FromtheCharacterSetstab,selectUseUnicode(AL32UTF8).
m. ClickAllInitializationParameters....
n. ClickShowAdvancedParameters.
o. Locatethefollowingparameters,changethemtothevaluesindicated,andthenclickClose.
nls_length_semantics
ChangethisvaluetoCHAR.
open_cursors
Changethisvalueto1000.
cursor_sharing
SetthisvaluetoFORCE.
p. FromtheInitializationParameterspanel,clickNext.
q. FromtheDatabaseStoragepanel,clickNext.
r. FromtheCreationOptionspanel,clickFinish.
s. ClickExittoexittheDatabaseConfigurationAssistant.Thedatabaseissuccessfullycreated.
Note:TheOracleDatabaseConfigurationAssistantstartsthe
ORACLE_HOME/ctx/admin/defaults/drdefus.sqlscriptaspartoftheconfigurationoftheCTXSYSuser.
YoumuststartthisscriptmanuallyiftheOracleDatabaseConfigurationAssistantisnotused.
4. CreateatablespaceusingthefollowingcommandinSQL*Plus:
Createtablespacemaxdatadatafile
'C:\oracle\product\11.1.0\db_1\dbs\maxdata.dbf'
size1000Mautoextendon;
Changethedirectoryspecifiedintheexampletothedatabaselocation.Ifthedirectorydoesnotexist,this
commandfails.
5. CreateatemporarytablespaceusingthefollowingcommandinSQL*Plus
createtemporarytablespacemaxtemptempfile
'C:\oracle\product\11.1.0\db_1\dbs\maxtemp.dbf'
size1000Mautoextendonmaxsizeunlimited;
Changethedirectoryspecifiedintheexampletothedatabaselocation.Ifthedirectorydoesnotexist,this
commandfails.
6. CreatethemaximouserandgrantpermissionsusingthefollowingcommandinSQL*Plus:
createusermaximoidentifiedbymaximodefaulttablespacemaxdatatemporary
tablespacemaxtemp;
grantconnecttomaximo;
grantcreatejobtomaximo;
grantcreatetriggertomaximo;
grantcreatesessiontomaximo;
grantcreatesequencetomaximo;
grantcreatesynonymtomaximo;
grantcreatetabletomaximo;
grantcreateviewtomaximo;
http://www01.ibm.com/support/knowledgecenter/api/content/nl/enus/SSWT9A_7.5.3/com.ibm.sccd.inswas.doc/install/t_manconfigdboracle11.html

2/3

27/1/2015

Oracle11gmanualconfiguration

grantcreateproceduretomaximo;
grantaltersessiontomaximo;
grantexecuteonctxsys.ctx_ddltomaximo;
alterusermaximoquotaunlimitedonmaxdata;
Ifyoucreatedaseparatetablespaceforindexing,youmustalsograntaccesstothatindextablespaceto
themaximouser.Forexample,usethefollowingcommandifyoucreatedaseparatetablespacefor
indexingcalledTSI_MAM_OWN.":
alterusermaximoquotaunlimitedonTSI_MAM_OWN
TheseinstructionsassumethatyoudidnotmodifydefaultrolesetsassignedtotheOracleDBAuseroruser
IDscreatedtoconnecttothedatabase.IfyourestrictedthedefaultprivilegesgrantedtouserIDs,youmust
explicitlygrantthemtothemaximouser.Forexample,ifyoudonotgrantarolesuchasthe
select_catalog_rolerole,youmustexplicitlygrantthatroletothemaximouser.Thisassignmentcanbe
donebyrunningthisSQL*Pluscommand:
grantselect_catalog_roletomaximo
Parenttopic:Manuallyconfiguringthedatabase

http://www01.ibm.com/support/knowledgecenter/api/content/nl/enus/SSWT9A_7.5.3/com.ibm.sccd.inswas.doc/install/t_manconfigdboracle11.html

3/3

You might also like