How to create materlised view in oracle 10g what are the step to create it

hi,
this hafeez i have a database in oracle 10g now i want to create materlised view to the database what arre the step required for it.

You should refer to documentation for more information:
[Overview of Materialized Views|http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#CNCPT411]
Kamran Agayev A. (10g OCP)
http://kamranagayev.wordpress.com
[Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

Similar Messages

  • What are the steps to create classes?

    What are the steps to create classes?

    Hello.
    Here's one example applied to a BSP page.
    How to create your first OO Abap Class for a BSP
    Kind regards.
    Bruno

  • What are the steps to create sap apo ..plz send step by steps plzzzzzzzzzzz

    what are the steps to create sap apo ..plz send step by steps plz. Iam new for these ?

    what are the steps to create sap apo ..plz send step by steps plz. Iam new for these ?

  • What are the steps to create DB connect?

    What are the steps to create DB connect?

    Hi,
    Check the following link for DB Connect details:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2f0fea94-0501-0010-829c-d6b5c2ae5e40
    Also please search in the forum, you will find lot of threads on this topic.
    regards,
    Pruthvi R

  • What are the steps in creating a customised report?

    Dear Experts,
    can you help me with your expereince what are the steps involved in creating a customised report?
    Who generates the requirement?
    Who prepares the functional spec and what information it contains?
    Who approves the functional spec once it is prepared?
    You can take the followig case as an example:
    The customer requirement is that a report can be run for everything that is received in a given area and compare the price at which the material was received to the standard or moving average price in SAP.
    Here, what information you will give to ABAP ers to devlop the report?
    I would appreciate if anyone can help me with the entire process.
    Full points to be awarded for a satisfactory reply.
    Regards,
    Ranjan

    hi
    >Who generates the requirement?
    client or end user
    >Who prepares the functional spec and what information it contains
    there should be a specific format and it is to be filled by the functional consultant
    http://www.sap-img.com/general/what-are-functional-specification-in-sap.htm
    http://erp.ittoolbox.com/groups/project-management/erp-projectmanagement/samples-for-sap-functional-specification-1194336
    >Who approves the functional spec once it is prepared?
    abaper or the TL
    http://sap.niraj.tripod.com/id67.html
    get the proper info from ur customer as what means all information
    get the proper fields he required
    regards
    KI

  • PUBLIC database account on oracle 10g - what are the default privilages?

    Hi there,
    I was wondering what are the default privileges to PUBLIC database account on oracle 10g R2. Could somebody explain it? Thank you in advance.

    There is not a user PUBLIC. There cannot be a user PUBLIC. Users and roles share the same name space so if there is a role PUBLIC, there can not be a user PUBLIC.
    The catalog table user$ contains both roles and users. The usage is determined by the TYPE# column - 1 = user, 0 = role.
    select user#, name, type# from user$  order by 1
    sys@esdb01:pncl# /
         USER# NAME                               TYPE#
    ========== ============================== ==========
             0 SYS                                     1
             1 PUBLIC                                  0
             2 CONNECT                                 0
             3 RESOURCE                                0
             4 DBA                                     0
             5 SYSTEM                                  1Try it yourself and see.
    SQL> create role foo;
    Role created.
    SQL> create user foo identified by bar;
    create user foo identified by bar
    ERROR at line 1:
    ORA-01920: user name 'FOO' conflicts with another user or role name                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • What are the steps to create a webservice from java

    i followed the doc. of weblogic 10.3 but something is missing..i am using ubuntu
    1)
    i created a webservice ping.java which placed in myproject/HelloWorld directory
    package HelloWorld;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    import javax.jws.soap.SOAPBinding;
    import javax.xml.ws.BindingType;
    @WebService(name="SimplePortType", serviceName="SimpleService",
    targetNamespace="http://example.org")
    @SOAPBinding
    @BindingType
    public class ping {
    @WebMethod
    public String main(String p){
    System.out.println("sayHello:" + p);
    return "Here is the message: '" + p + "'";
    2) and created a build.xml and placed it in myproject folder
    <project default="all">
    <target name="all"
    depends="clean,build-service,deploy" />
    <target name="clean">
    <delete dir="output" />
    </target>
    <path id="*my.path*">
         <pathelement path="/home/suresh/bea/jdk160_05/lib/tools.jar"/>
    <pathelement path="/home/suresh/bea/wlserver_10.3/server/lib/weblogic.jar"/>
    </path>
    <taskdef name="jwsc"
    classname="weblogic.wsee.tools.anttasks.JwscTask" classpath="/home/suresh/bea/wlserver_10.3/server/lib/weblogic.jar" />
    <target name="build-service">
    <jwsc srcdir="HelloWorld" destdir="output/helloWorldEar">
    <jws file="ping.java" type="JAXWS"/>
    </jwsc>
    </target>
    <taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy" classpath="/home/suresh/bea/wlserver_10.3/server/lib/weblogic.jar"/>
    <target name="deploy">
    <wldeploy action="deploy"
    name="myproject"
    source="output/helloworldEar" user="weblogic"
    password="weblogic"
    adminurl="t3://${wls.hostname}:${wls.port}"
    targets="${wls.server.name}"/>
    </target>
    </project>
    3) after that how to start weblogic and how to set any needed env or domain properties.How to publish it to server?
    4) how to configure security
    can i use netbeans to do all the above things?
    Thanks
    Suresh

    what my.path indicates in the above wsdl?
    or which path i have to give there?

  • What are the steps to create an idoc in the system?

    Hi all,
    Could you give me the steps for the idoc creation..Please give step by step procedure only and if possible point me to related files or threads.
    Thanks,
    Charles.

    Hi,
    Check this link
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    Thanks,
    Naren

  • What are the steps to create a simple html e-mail form?

    I've attempted to make an html e-mail form using PHP. However, the instructions from Adobe that I've been following aren't working. Perhaps because I am doing something wrong. Anybody have any ideas as to why it might not be working?

    The path to the form script is wrong. Change
    <form action="www.mocatholic.org/sendresults.php"
    to
    <form action="/sendresults.php"
    or include the full url like
    <form action="http://www.mocatholic.org/sendresults.php"

  • What are the tools to create a digital magazine for ipad version and how can be place it in newsstand?

    Hello..
    "what are the tools to create a digital magazine for ipad version and how can be place it in newsstand?"
    I am very tired after done a week of R&D on this issue..
    But i doesn't get any fair solution for this one..
    I hope this is best option to place my issue here to get quick solution..
    Thanks and Regards..

    We are all users here.
    There is no one here from Apple.
    In order for you to develop and distribute content for the iPad, you need to become an apps developer.
    Not sure where you sign up for this or who you have to call.
    There should be a place on Apple's site that refers to a section of the site if you want to be an Apple iOS content developer.
    It cost, I believe $99 U.S. to become an Apple apps developer. You'll agree to Apple's Non-disclosure rules.  You'll receive Apple's app/software developers kit,and access to Apple's app developer site.
    No one here is going to be able to help you.
    Good Luck.

  • What are the differences of creating a physical standby database with ASM?

    I want to create a physical standby database for my 10g(10.2.0.1) database. But it is using ASM. Is it possible to create a standby database for a database using ASM?
    What are the differences of creating a physical standby database with ASM?

    tell us what your research shows and we'll try to
    validate it. I am simulating Oracle ASM on a PC and I want to try
    DataGuard on it now. So I am trying to create DataGuard
    on an ASM system. The purpose is only learning and test.That's telling us how you are researching, not what you have observed.
    Your research could have included looking at the documetation, and you might have found http://download.oracle.com/docs/cd/B19306_01/server.102/b14239/scenarios.htm#sthref1642
    which discusses exactly what you are looking for.
    Message was edited by:
    Hans Forbrich

  • What are the steps  to view the output for check printing

    what are the steps  ,the method to view the output for check printing

    Hi,
    You can ask your functional person to make a payment to a vendor which will then issue a check. You can use the same payment run in program RFFOUS_C and create new checks by voiding the previous check number with a void reason code.
    You can do this as many times as you want and test your check output.
    Regards
    Shounak

  • What are the steps in oracle 11g DBREFRESH

    Dear Techies,
    Please help me on below. I followed all steps in db refresh
    I have done till
    Alter database open resetlogs
    status is open
    what are the steps remaining in oracle 11g dbrefresh from PRD to QTY. is there any post steps to drop old ops$users.
    Please let me know.
    Thank you
    Best Regards
    RJ

    Hi Gurpal,
    Thank you for your valuable reply
    Do I need to do your mentioned steps after below steps
    RECOVER DATABASE USING BACKUP CONTROL FILE UNTIL CANCEL;
    AUTO.
    once recovery is done CANCEL.
    Alter database open resetlogs.
    status is open.
    AS YOU MENTIONED
    Make sure listener and DB should be up.
    Determine Schema Owner
    SQL> SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'T000';
    Check the OWNER of  “SAPUSER”
    SQL>SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
    Create OPS$ User
    Use the oradbusr.sql script. This script is attached to the note 50088. The script is valid for Oracle and UNIX. Use the following syntax
    SQL> @ORADBUSR.sql  SAPR3 UNIX (SID)  X
    Check the OWNER of  “SAPUSER" after exceute command
    SQL>SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
    If the system returns an owner <owner> other than OPS$<sid>ADM (OPS$SIDADM) of PRD, you must
    delete the relevant SAPUSER tables:
    SQL> DROP TABLE “OPS$SIDADM".SAPUSER;
    and after that check the output of (R3trans -d)
    set the value in profile parameter
    To ensure no background jobs after the start (Rdisp/wp_no_btc =0)
    (Login/no_automatic_user_sapstar =0 )
    or Any table spaces need to be create ???? PSAPTEMP ??? or any.
    Thanks & Regards
    RJ

  • Last week what are the new indexes created in my database

    last week what are the new indexes created in my database.How can I know?
    Thanks

    Please try this:
    SELECT t.name AS TableName ,
    ind.name AS IndexName ,
    col.name AS ColumnName ,
    STATS_DATE(t.object_id, ind.index_id) AS IndexCreationDate
    FROM sys.indexes ind
    INNER JOIN sys.index_columns ic ON ind.object_id = ic.object_id
    AND ind.index_id = ic.index_id
    INNER JOIN sys.columns col ON ic.object_id = col.object_id
    AND ic.column_id = col.column_id
    INNER JOIN sys.tables t ON ind.object_id = t.object_id
    WHERE ind.is_primary_key = 0
    AND ind.is_unique = 0
    AND ind.is_unique_constraint = 0
    AND t.is_ms_shipped = 0
    AND STATS_DATE(t.object_id, ind.index_id) > ( GETDATE() - 7 ) ;
    T-SQL Articles
    T-SQL e-book by TechNet Wiki Community
    T-SQL blog

  • How do I unlock an iphone 5 with Sprint. The SIM is in and Sprint gave me the unlock code, but what are the steps to unlock it?

    How do I unlock an iphone 5 with Sprint 15.1 at IOS 7.0.6 IMEI 99 000320 012095 0 .
    The SIM is in and Sprint gave me the unlock code, but what are the steps to unlock it?

    There is no such thing as an unlock code.   Sprint may have processed the unlock, and then requested you restore the iPhone using iTunes to complete it. But that's it. There is no code to enter, and nowhere to enter it any way.
    iPhone: About unlocking

Maybe you are looking for

  • HELP PLEASE - WHATS WRONG WITH THIS CODE

    Hi. I get this message coming up when I try to compile the code, run: java.lang.NullPointerException at sumcalculator.SumNumbers.<init>(SumNumbers.java:34) at sumcalculator.SumNumbers.main(SumNumbers.java:93) Exception in thread "main" Java Result: 1

  • Error in SOAP Adapter Response

    I am getting the following Error in SOAP Response ... but when i tried the with ALTOVA XML SPY its working fine.. <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Inbound Message   --> - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Mess

  • Installed newest iTunes.  iTunes screen has NO menus at all. All menus missing along with all music info and song titles. Any thoughts?

    Just installed newest iTunes.  The iTunes screen is missing ALL menus (menu bar, side bar everything is blank) All music albums have a musical note icon but NO album titles or song titles.  Music plays but there is no way to know which album or which

  • FORMCALC (or JS) Default date today with user override questions

    I have a date field where if null, I want today to be inserted. If the user overrides the today date and saves the form, I want the user entered date to stay. What I have in FORMCALC is: if ($.isNull) then $.rawValue = num2date(date(), DateFmt(2)) en

  • Passing prompt filters through an URL

    My report has very long results table. The user ask to have, instead of the table view (which sometimes crashes the browser), a way to execute the report and download it to xls. I want to add section in the page, below the prompts, which will display