How to run Policy manager in 10g on UNIX

Hi,
I have installed Oracle 10g and I want to install Label Security.
Can anybody let me know how to open Policy Manager in 10g.
I am working on HP-UX platform....
JAI HIND
Darshan

1) Label Security is a separately licensed option - costs extra $;
2) There is a whole manual describing how to use it;
3) oemapp is available from the 'Client' installation CD in 10g;
4) From the manual
"Note that the graphical user interface for the Oracle Policy Manager (OPM) should be used for viewing data only when Oracle Label Security is configured to use the Oracle Internet Directory. OPM can be used to view and modify data only when Oracle Label Security is configured to use the Oracle9i database as its primary repository. OPM can be used to manage VPD regardless of the Oracle Label Security configuration."

Similar Messages

  • How to Run Developer Suit Form 10g

    my question is
    how to run form in developer suit i was using developer 6I now i want to run my module to developer suit 10g first i install developer suit 10g then database 10g and make a simple module of emp table
    now when i run its give me error The HTTP Listner is not runing
    i start OC4J Instance then again i run the form its run and install
    Jinitator 1.3.1.22
    then its give me again error
    ORA-12560 Tns protocol adopter failure
    i check my firewall setting its check all program and service excluding Remote disktop
    I check my TNSNAMES.ORA file its look like
    # tnsnames.ora Network Configuration File: d:\DevSuiteHome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = SERVER)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = orcl)
    uid=shah;pwd=a;
    i save my module in D:\module1.fmb so there is no space in folder
    but still i am facing the same error
    i not one thing that i connect with just my user id and password and left blank in database
    Just like
    USERID = SCOTT
    PASS = TIGER
    DATABASE =
    Any one know how to solve this problem
    Thanks
    Shahzaib ismail
    Developer Suit 10g, Database 10g, OS Window XP

    well when i connect with my database i right
    username = Scott
    password = tiger
    and i left blank in database row
    because when i insert orcl in database row its give me error
    TNS No listener
    i search listener.ora file and i found in
    d:\devsuit_home1\network\admil
    *# listener.ora Network Configuration File: d:\DevSuiteHome_1\NETWORK\ADMIN\listener.ora*
    *# Generated by Oracle configuration tools.*
    SID_LIST_SERVER =
    *(SID_LIST =*
    *(SID_DESC =*
    *(GLOBAL_DBNAME = Oracle8)*
    *(ORACLE_HOME = E:\oracle\product\10.2.0\db_1)*
    *(SID_NAME = ORCL)*
    *(SID_DESC =*
    *(GLOBAL_DBNAME = orcl)*
    *(PROGRAM = orcl)*
    *(SID_NAME = orcl)*
    *(ORACLE_HOME = E:\oracle\product\10.2.0\db_1)*
    *(SID_DESC =*
    *(GLOBAL_DBNAME = orcl)*
    *(PROGRAM = orcl)*
    *(SID_NAME = orcl)*
    *(ORACLE_HOME = E:\oracle\product\10.2.0\db_1)*
    SERVER =
    *(DESCRIPTION =*
    *(ADDRESS = (PROTOCOL = TCP)(HOST = SERVER)(PORT = 1521)(SEND_BUF_SIZE = 1521)(RECV_BUF_SIZE = 1521))*
    LOGGING_SERVER = OFF
    SAVE_CONFIG_ON_STOP_SERVER = TRUE
    what can i do now ?

  • How to run remote manager as a service

    Hi,
    We have remote manager installed in remote server. When we log off from the server, Remote manager stops running and our exchange provisioning fails. Is there a standard way to keep remote manager running even if we log off from the server?
    We thought of running remote manager as a window service but we are not sure whether its a good practice or not. We also, dont kow whether oracle recommends this way or not. If anybody have worked on this, then please let us know.
    Thanks.

    below link will help you to configure bat script as windows service
    http://stackoverflow.com/questions/415409/run-batch-file-as-a-windows-service
    In case of unix call your script under .profile.

  • How to run JSP in iAS 10g?

    Hi.
    I installed an oracle 10g DB in my windows XP, and also installed iAS 10g. It looks like working well. But when I run a jsp file in my browser, JSP file does not work.
    Can anybody tell me how to deploy the jsp in iAS 10g?
    Thanks

    There are a few ways to deploy a jsp file or an application to IAS 10g. Before we run into that, can you do a basic check if jsp files does work? Please go to
    http://<yourHost>:<yourPort>/j2ee/examples/jsp
    and click a few examples. If it works, then you may try putting a simple jsp file, say, a.jsp in a
    <J2EE_HOME>/default-web-app directory
    where <J2EE_HOME> is the directory that contains oc4j.jar. Then check
    http://<yourHost>:<yourPort>/j2ee/a.jsp

  • How to run report from form 10g

    Dear All,
    I have code of forms 6i that i used to run report. but when i run this code through forms 10g this gives message that use RUN_REPORT_OBJECT instead.
    please convert my code to 10g .
    ==============================================
    pl_id:=Get_Parameter_List('tmpdata');
         IF NOT Id_Null(pl_id) THEN
              Destroy_Parameter_List(pl_id);
         END IF;
         pl_id:=Create_Parameter_List('tmpdata');
         Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         Add_Parameter(pl_id, 'P_FROM', TEXT_PARAMETER,:FROM);
         Add_Parameter(pl_id, 'P_TO', TEXT_PARAMETER, :TO);
    Run_Product(REPORTS,'ANNEX_B_CONSTRUCTION_QUALITY',SYNCHRONOUS,RUNTIME,FILESYSTEM,pl_id);
    =======================================================
    Many thanks

    Some sample code. Create REPORT1 under Report node of the form.
    DECLARE
      PL_ID                 ParamList;          
      v_rep_id          REPORT_OBJECT;               
      v_rep            VARCHAR2(200);               
      v_rep_file        VARCHAR2(100); --Added to change create a unique file each time report created.
      v_tmp_path                         varchar2(250);
    BEGIN
    v_rep_id := FIND_REPORT_OBJECT('REPORT1');
    v_rep_file:=USER||'_'||to_char(SYSDATE,'DDMMYYYY_HH24MISS');
    pl_id:=Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List(pl_id);
    END IF;
    pl_id:=Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    Add_Parameter(pl_id, 'P_FROM', TEXT_PARAMETER,:FROM);
    Add_Parameter(pl_id, 'P_TO', TEXT_PARAMETER, :TO);
    --Run_Product(REPORTS,'ANNEX_B_CONSTRUCTION_QUALITY',SYNCHRONOUS,RUNTIME,FILESYSTEM,pl_id);
    SET_REPORT_OBJECT_PROPERTY(v_rep_id,REPORT_FILENAME, 'tested_part_report'||'.rdf');
    SET_REPORT_OBJECT_PROPERTY(v_rep_id,REPORT_DESTYPE,FILE);
    SET_REPORT_OBJECT_PROPERTY(v_rep_id,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(v_rep_id,REPORT_DESNAME,v_tmp_path||v_rep_file||'_Tested_Part_Report.pdf');
    v_rep := RUN_REPORT_OBJECT(v_rep_id,PL_ID); 
    --You should have a virtual path set as /output/ in Application server
    --Show the pdf output create in the folder mapped to output
    Web.Show_Document('/output/'||v_rep_file||'_Tested_Part_Report.pdf','_blank');     
    END;You need to put the files in the path (As set in the registry of application server) . Needed application server knowledge to deploy the reports.
    Edited by: Lokanath Giri on २२ दिसंबर, २०११ ११:०३ पूर्वाह्न
    Edited by: Lokanath Giri on २२ दिसंबर, २०११ ११:५९ पूर्वाह्न

  • How to run a managed server on a different physical server?

    Hi,
    A) I have the following configuration:
    1) Server A:
    Weblogic software with domain is installed.
    MachineA (ListenAddress=localhost, port=5556)
    NodeManager(port=5556)
    AdminServer (Uses MachineA, port=7001)
    ManagedServer01 (Uses MachineA, port-7002)
    ManagedServer02 (Uses MachineA, port-7003)
    2) Server B:
    Weblogic sofware with domain is installed.
    I wish to have ManagedServer11 running on ServerB, and be started/stopped using the Node Manager running on ServerA.
    B) My questions:
    1) Where to create ManagedServer11, on ServerA ot ServerB?
    2) What properties should give to ManagedServer11?
    Thanks by advance for any tips or explanations.
    Kind Regards.

    You'e going to have to start the managed server with the node manager located on the same host. You can still control using the admin console but you'll have to configure a machine for each physical host in the cluster.
    The Pack & Unpack utility makes the domain configuration on the second host easy.
    http://docs.oracle.com/cd/E23943_01/core.1111/e10106/odi.htm#ASHIA5010

  • How to run weblogic managed server as windows servcie

    Hello Friends,
    I want step-by-step guide to run managed server and application through windows service.
    I am able to create admin server as windows service. I tried lot for managed server but no luck.
    please help me to resolve it.

    Hi,
    Here am attached the script for creating a windows service for p6 managed service which i have used for my environment.
    SETLOCAL
    set DOMAIN_NAME=P6EPPM
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\P6EPPM
    set SERVER_NAME=P6
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://p6eppmdev:7001
    cd %USERDOMAIN_HOME%
    call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    I hope it will work for you.
    Try this and update the forum.
    Regards
    Kumar

  • How to run servlets in Oracle 10g Application server

    I have tried running the simple servlet given in this URL
    oracle.com/technology/sample_code/tech/java/servlets/samples/hellouser.
    The following error comes when i try to access it
    "Invalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol"
    I have used simple deploying method and followed alll the steps given

    The following error comes when i try to access it
    "Invalid protocol verification, illegal ORMI request or request performed with an
    incompatible version of this protocol"You are using the rmi port of oc4j in your URL. Instead, your should use the http port. Yes, of course, the http port.
    The initial ports are defined at ORACLE_HOME/install/portlist.ini ... if you reconfigure (say, by changing the ORACLE_HOME/Apache/Apache/conf/*.conf or the ORACLE_HOME/Apache/conf/* files), the portlist.ini will not be updated. Well, you can always use "opmnctl status -l" to find the http port.

  • How to run jobs in oracle 10g

    I have created the following job,
    BEGIN
    -- Job defined entirely by the CREATE JOB procedure.
    DBMS_SCHEDULER.create_job (
    job_name => 'Update_Status',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN ;updateStatus; END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'freq=minutely; bysecond=0;',
    end_date => NULL,
    enabled => TRUE,
    auto_drop => FALSE,
    comments => 'Job defined entirely by the CREATE JOB procedure.');
    end;
    When I look for the status of the job in the following table
    SELECT *FROM USER_SCHEDULER_JOB_LOG
    The Status field shows Failed. How to make my job runnable what could be reason. Please help to solve this problem.

    Hello,
    this is the forum space for the tool SQL Developer.
    Your question should be asked at Scheduler
    Please mark this question as answered and post again in the correct space.
    Regards
    Marcus

  • How to run Enterprise Manager Configuration Assistant on Redhat 7.1?

    Hi,
    As I cannot find the directory description of Oracle 8.1.7 on Redhat 7.1, it's hard to execute many commands, such as emca (Enterprise Manager Configuration Assistant). But I found emca under /Disk1/.../Scirpt. When I ran this script, it mentioned that there is no jre blablabla. Anyone can help?
    Thanks in advance.
    Rocky

    Please reply to [email protected]
    Appreciate it.

  • How to run report from a cronjob in UNIX server?

    I am trying to create a huge report in pdf format in UNIX server,
    please tell me the command and syntax.
    tnx

    Hi,
    Reports job command line methods (and syntax) are explained here (Publishing Reports Manual):
    http://download.oracle.com/docs/html/B10314_01/pbr_run.htm#1008687
    And all the different arguments that you can specify in the command are explained here:
    http://download.oracle.com/docs/html/B10314_01/pbr_cla.htm#666889
    Navneet.

  • How to run Reports demos?

    I finally got everything installed and I'm trying to run the Reports demos off of the mid-tier web site. when I click on the jsp report demo it brings up the parameter page. I just use the defaults and click the run button. when I do that it asks me for a SSO login/password. what do I use here? I've looked over all the docs I can think of without finding anything.
    Thanks,
    Jason

    Hi Thivan,
    See the links here:
    http://www.oracle.com/technology/products/reports/htdocs/search.html?cat=INT&col=WIP&submit=Search
    Look for "Integrating Oracle9iAS Reports Services in Oracle9iAS Forms Services"
    Another link on the above page will give you info on how to run Reports from Forms 10g.
    Navneet.

  • How to execute Java.exe on MAC, LINUX, UNIX...

    okay, I know this is very stupid, but can anybody tell me how to run Java.exe on MAC, LINUX, UNIX?
    I know how to run it from windows, I have a batch file created in windows, will it work on MAC, LINUX and UNIX as well? (I'm not sure if on other OS, there is such a file type call *.bat)

    See what I mean about probably wanting a beginner's book on Unix and/or shell scripting?
    okay crackers, the only thing that I have to do is put
    in the name of my program into "your program here".Not necessarily. There's the ClassPath, program parameters, etc. What you need to put in the "your program here" depends upon your program. What I did was allow the script to be invoked with command-line parameters and you could (depending upon your program) put "-jar myjar.jar" in the indicated spot, if your JAR file was runnable.
    The rest no need to change. right?I don't know. What does your program need? Only you can answer that, not me. I just furnished an example.

  • How to  start Enterprise manager 10g Linux?

    To,
    Can some one please tell me
    How to start Enterprise manager 10g on Linux RHEL 4.7
    Thanks,

    Hi
    While runniing $ sh emctl start dbconsole getting error of Enveromment variable ORACLE_SID not Defined
    Can you pls tell me Where do i fine env file to source the ENV file Enterprise manager 10g
    Also do i need to run the *$ sh emctl start dbconsole* command from GUI of Linux.
    Actualy follwoing is my exact stetup
    I have installed Oracle EBS 11.5.10.2 on Linux EHEL 4.7
    On the same Linux Box ( Where Oracle EBS 11.5.10.2 is installed ) Installed Oracle Application and Infra. server and Discoverer
    Please guide me on the same.
    Thanks,

  • How to run a report from oracle 10g form in .csv format

    dear all,
    how to run a report from oracle 10g form in .csv format? i've already run in pdf & excel format.
    i'm using
    SET_REPORT_OBJECT_PROPERTY (ro_report_id, report_desformat, 'PDF'); --for pdf
    SET_REPORT_OBJECT_PROPERTY (ro_report_id, report_desformat, 'SPREADSHEET'); ---for excel
    Please Help..

    i have already tried.
    but the report show in htm or html format. that file will not save into csv. please help.

Maybe you are looking for

  • IPhone 3G freezing up after 3.1 update

    I have three iPhones in my house hold. I update all of them 3.1 at the same time. Tow of them are 8 gig 3g models and the third one is a 16 gig 3GS. Since the update to 3.1 there are times the phone freezes up at random. It will not respond at all. J

  • How to re-install OS and Thinkpad software after hardware upgrade?

    I am getting ready to buy SSD for my X220. My recovery partition is on my current hard drive, so instead of backing up and restoring the whole hard drive, (I am getting a smaller hard drive) I want to restore the system from recovery partition (clean

  • 30-gig video iPod and new games

    I downloaded one of the new games (Mahjong) to my WinXP iTunes (v.7.0) w/o problem, but I can't load it to my iPod (v.1.2) without getting the "can't run it on this computer" error message. {Yes, I know we can't run these games w/i iTunes on the comp

  • IPod touch video recording not hd

    I'm using an IPod touch 4th generation running IOS 6. I read this model is supposed to record 720p video -- but it is only recording 320x568.

  • I need an app that reads Windows Journal format .jnt

    HI, we use Windows Journal extensively & sometimes need to share docs with others using iPads. Trouble is, there doesn't seem to be an app that reads .jnt