Is result_cache working in Oracle 11.1.0.6.0?

BANNER
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
PL/SQL Release 11.1.0.6.0 - Production
CORE 11.1.0.6.0 Production
TNS for Solaris: Version 11.1.0.6.0 - Production
NLSRTL Version 11.1.0.6.0 - Production
SQL> SELECT dbms_result_cache.status() FROM dual;
DBMS_RESULT_CACHE.STATUS()
--------------------------------------------------------------------------------------------------------------------------------------------------------------------ENABLED
12:31:08 SQL> set autotrace on
select count(*) from objs;
12:31:27 SQL>
COUNT(*)
69918
Elapsed: 00:00:01.72
Execution Plan
Plan hash value: 386529197
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 1 | 289 (1)| 00:00:04 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | TABLE ACCESS FULL| OBJS | 80773 | 289 (1)| 00:00:04 |
Note
- dynamic sampling used for this statement
Statistics
282 recursive calls
0 db block gets
1140 consistent gets
1038 physical reads
0 redo size
524 bytes sent via SQL*Net to client
524 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
5 sorts (memory)
0 sorts (disk)
1 rows processed
12:31:49 SQL> select /*+ result_cache */ count(*) from objs;
COUNT(*)
69918
Elapsed: 00:00:00.03
Execution Plan
Plan hash value: 386529197
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 1 | 289 (1)| 00:00:04 |
| 1 | RESULT CACHE | cnsc9rw3p17364cbg4975pad6y | | | |
| 2 | SORT AGGREGATE | | 1 | | |
| 3 | TABLE ACCESS FULL| OBJS | 80773 | 289 (1)| 00:00:04 |
Result Cache Information (identified by operation id):
1 - column-count=1; dependencies=(CTSGKOD.OBJS); attributes=(single-row); name="select /*+ result_cache */ count(*) from objs"
Note
- dynamic sampling used for this statement
Statistics
4 recursive calls
0 db block gets
1110 consistent gets
0 physical reads
0 redo size
524 bytes sent via SQL*Net to client
524 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed
12:32:06 SQL>
i see result_cache in execution plan, but why do i see 1110 consistent gets? I expected 0 in consisent gets and physical reads and the query is not executed ...
Thank You

Aman,
lets say i run these statements
1) exec dbms_result_cache.flush
2) alter system flush shared_pool;
3)alter system flush buffer_cache;
Then i run the query without hint of result_cache
4) Select count(*) from objs; --> This query is not using result cache, it is running for first time, so physical reads & consistent gets
5) select count(*) from objs; --> again same query, this time only consistent gets
6) select /*+ result_cache */ count(*) from objs; -- Lets introduce result_cache now
Will the above query gets data from buffer cache or will it use result_cache and gets result from memory instead of running query? Or will this 6th statement run same as (5) and prepares ground for usage of result_cache and
any other queries later can benefit from result_cache?
Thanks again Aman

Similar Messages

  • Unable to find ODI_SAmple_DATA.zip file to work with oracle profiling.

    I am unable to find ODI_SAmple_DATA.zip file to work with oracle profiling.Any help regarding profiling???Do i need to
    copy it from sw installation folder.?How profiling is different or related to odi data quality???Do we take source data twice -
    1) For ODI target load
    2)For profiling into entities.

    Try:
    http://www.oracle.com/technology/products/oracle-data-quality/pdf/oracledq_sample_data.zip
    and
    http://download.oracle.com/otn/nt/ias/101340/oracledq_sample_directory.zip
    Hope this helps.
    G

  • What will you do if any SQL is not working.in oracle 10g...apps 11.5.10.2

    What will you do if any SQL is not working. in oracle 10g....apps 11.5.10.2

    928714 wrote:
    yes sir.If you help me in answering my questions i wll be very thankful to you sir.
    tnx,I haven't a clue.
    As you have been advised in many of your posts, go study the documentation for whichever specific topic you are interested in.
    For me to answer your questions, I would need to go get that documentation.
    Then I would need to read that documentation.
    Then I would need to write a forum post that interprets what I think I learned from that documentation.
    It is so very much faster if YOU go do that instead of posting to a forum and expecting others to do it. You will remember what you study for a lot longer time if you teach yourself.

  • Table_From_Block Build-in Package is not working in Oracle 10G

    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..

    user648759 wrote:
    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..Provide a little more information. Forms version OS version, more information about your problem and question.
    --and explain what on earth Table_From_Block* mean's--
    Tony
    PS: TABLE_FORM_BLOCK is a built-in for internal use, usually auto generated by forms. For a moment I didn't get what that meant, need more coffee.
    Edited by: Tony Garabedian on Aug 29, 2008 12:39 PM

  • Select * from tab is not working in oracle 10g

    select * from tab is not working in oracle 10g. But at the same time,
    select * from <<table>> is working.
    Please advise me.

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • Can Oracle designer 1.3.2 work with Oracle 8.0.5

    Dear Sir/Miss,
    I would like to know if anyone can tell me if Oracle Designer 1.3.2 can work with Oracle 8.0.5 database or not?
    Thank you
    Best Regards

    First i installed Oracle 10g on my windows 7 home premium 64 bit .
    Then i installed OBIEE 10.1.3.4 on my machine
    But then there were some problems cropping up and i wasn't able to use OBIEE 10.1.3.4 with windows 7home premium 64 bit machine.
    I then removed both oracle 10g and OBIEE 10.1.3.4 from my machine.
    Then i installed oracle 11g 64bit and then OBIEE 10.1.3.4 . But again it dint work
    Can anyone help?

  • MERGE using nested table doesn't work on Oracle 9i

    Hi,
    Oracle 9i Enterprise Edition Release 9.2.0.4.0 on Red hat Linux
    SQL> create table PERSONS (
      2    ID  number(9)
      3   ,SURNAME  varchar2(50)
      4   ,constraint PERSONS_PK primary key (ID)
      5  );
    Table created.
    SQL> create or replace type T_NUMBER_ARRAY as table of number;
      2  /
    Type created.
    SQL> create or replace procedure P_MRGTS2 (P_ID  PERSONS.ID%type)
      2  is
      3    L_IDS  T_NUMBER_ARRAY;
      4  begin
      5    L_IDS := T_NUMBER_ARRAY(P_ID);
      6    merge into PERSONS P using (select * from table(L_IDS)) D on (
      7      P.ID = D.COLUMN_VALUE
      8    )
      9    when matched then update
    10      set SURNAME = 'Updated'
    11    when not matched then
    12      insert (
    13        ID
    14       ,SURNAME
    15      )
    16      values (
    17        D.COLUMN_VALUE
    18       ,'Inserted'
    19      );
    20  end;
    21  /
    Procedure created.
    SQL> exec P_MRGTS2(1)
    BEGIN P_MRGTS2(1,'Avi'); END;
    ERROR at line 1:
    ORA-22905: cannot access rows from a non-nested table item
    ORA-06512: at "OPS$AABRAMI.P_MRGTS2", line 9
    ORA-06512: at line 1However, the same code on Oracle 10g Release 10.2.0.1.0 on SUN Solaris 9 works.
    Is there any way to make it work on Oracle 9i?
    One way I found is the following:
    procedure P_MRGTST (P_ID  PERSONS.ID%type)
    is
      L_IDS  T_NUMBER_ARRAY;
    begin
      L_IDS := T_NUMBER_ARRAY(P_ID);
      forall I in L_IDS.first..L_IDS.last
        merge into PERSONS P using DUAL D on (
          P.ID = L_IDS(I)
        when matched then update
          set SURNAME = 'Updated'
        when not matched then
          insert (
            ID
           ,SURNAME
          values (
            L_IDS(I)
           ,'Inserted'
    end;On Oracle 10g there is negligible difference in time taken to execute both procedures, as displayed in SQL*Plus when issuing:
    set timing onIs there something that makes one of the procedures preferrable over the other?
    Thanks,
    Avi.

    Is there any way to make it work on Oracle 9i?
    michaels>  select * from v$version
    BANNER                                                         
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    PL/SQL Release 9.2.0.8.0 - Production                          
    CORE     9.2.0.8.0     Production                                      
    TNS for HPUX: Version 9.2.0.8.0 - Production                   
    NLSRTL Version 9.2.0.8.0 - Production                          
    michaels>  create table persons (
        id  number(9)
           ,surname  varchar2(50)
              ,constraint persons_pk primary key (id)    )
    Table created.
    michaels>  create or replace type t_number_array as table of number;
    Type created.
    michaels>  create or replace procedure p_mrgts2 (p_id persons.id%type)
    is
       l_ids   t_number_array;
    begin
       l_ids := t_number_array (p_id);
       merge into persons p
          using (select * from table (cast (l_ids as t_number_array))) d
          on (p.id = d.column_value)
          when matched then
             update set surname = 'Updated'
          when not matched then
             insert (id, surname) values (d.column_value, 'Inserted');
    end p_mrgts2;
    Procedure created.
    michaels>  exec p_mrgts2(1)
    PL/SQL procedure successfully completed.
    michaels>  select * from persons
            ID SURNAME                                          
             1 Inserted                                         
    1 row selected.

  • Oracle 11g XE not working with oracle BI publisher 10g after enabling ACL

    Hello,
    I previously work with oracle 10gXE and Oracle BI publisher 10g and it work fine. now i install oracle 11g XE and try to configure it with oracle Bi Publlisher, it show this error
    "ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1324 ORA-12570: TNS:packet reader failure" after runing the ACL package to neable network service.
    on the database.
    Please can any body tell be why this is not working. Tanx.

    You'll need to add the apex engine owner to the ACL (Access Control List). Depending on your version of apex the user name varies. i.e. 4.0 is APEX_040000
    See Joel's blog for info about the ACL and APEX.
    [http://joelkallman.blogspot.com/2010/10/application-express-network-acls-and.html]

  • For a beginner to work in Oracle EBS, Which is better start, support project or implementation?

    Dear Experts,
    I have just joined a company which works on Oracle ERP. and i have been assigned to a support project with an idea that there i will have more opportunities to learn and then I can shift over to Implementation project. Since I am a fresher I have no clue How the career growth goes. So my question is whether I should first take support and then Implementation or I should Take an Implementation Project Directly.
    Secondly I want to know what are differences In Roles and Responsibilities as a fresher in Support and Implementation projects.
    Please reply ASAP.

    Dear Experts,
    I have just joined a company which works on Oracle ERP. and i have been assigned to a support project with an idea that there i will have more opportunities to learn and then I can shift over to Implementation project. Since I am a fresher I have no clue How the career growth goes. So my question is whether I should first take support and then Implementation or I should Take an Implementation Project Directly.
    Secondly I want to know what are differences In Roles and Responsibilities as a fresher in Support and Implementation projects.
    Please reply ASAP.

  • ASP application has problems working with oracle database 8.1.7

    ASP application has problems working with oracle database 8.1.7 through both oracle ODBC driver and Microsoft ODBC driver
    We have an ASP application running on Windows 2000 server, and with 8.1.7 Net8Client and MDAC 2.6 SP1.
    The application worked fine with an Oracle 8.0.5 database.
    After upgrading oracle database to 8.1.7.0.0, our ASP application works fine except when updating the same data record more than once. The application is not saving our updates.
    We tested our application using Oracles ODBC driver v8.1.7.5.0
    and experienced more problems. We had problems just bring up our data entry pages. In either case, we are returned with some 505 errors in our browser, problems with the ASP pages and IIS, the page is not displaying.
    If anyone has some suggestions on how to fix my problem, please advise. Thanks in advance.

    thanks...i saw one article with this approach..but the document did not present the detailed process...do you have one? i am still searching for a good procedure to follow...since it is an old database and focusing/studying old versions like this is a pain in the a**... :(

  • Runtime.exec()  in Java not working in Oracle 10 Application Server

    Hi ,
    I am trying to call a .exe file which is in the Web Application folder .
    I am Using Process p = Runtime.exec("path to .exe file ")
    This code is working fine when used with JBOSS , but not working with Oracle Application server .
    Please tell me whether i need to do any chnages to make it work
    Thanks in advance .

    I ran a quick test with your code, I just had to make some small changes, and things work for me...
    I'm testing with JDeveloper 10g 10.1.3.2.0 ...
    The only thing I wonder is DBUser DBPass DBHost, those are not the actual values, correct?, neither they are environment variables?...
    In the server hosting your OAS, you should try running the whole CMD line from the start/run dialog ... make sure it works in that server ...
    Here is the code used in my test:
    In JSP:
      <%@ page import="runexepkg.*" %>
      <% 
      String msg = "";
      try
      RunEXE p = new RunEXE();
      msg = p.main1();
      catch(Throwable t)
         System.out.println("Exception Raised");
         t.printStackTrace();
      %>
      <%= msg %>In Java Class:
    package runexepkg;
    import java.sql.*;
    public class RunEXE
        String ss="";
        public String main1()
        try
            Runtime rt=Runtime.getRuntime();
            Process p = rt.exec("CMD /C start C:\\oraappserver\\j2ee\\WebGis\\applications\\PowerGis\\web\\WEB-INF\\classes\\GisProject\\cust_data_1.exe DBUser DBPass DBHost");
            System.out.println("Command has been executed");
            Class.forName("oracle.jdbc.driver.OracleDriver");
            Connection con = DriverManager.getConnection("jdbc:oracle:thin:@DBHost:DBPort:orcl","DBUser","DBPass");
            System.out.println("Test Connection ========== "+con);
            Statement st = con.createStatement();
            ResultSet rs = st.executeQuery("SELECT SYSDATE FROM DUAL");
            if(rs.next())
                ss="Command has been executed - Database has been accessed";
            else
                ss="Command has been executed - Database was not accessed";
        catch(Throwable t)
            System.out.println("Exception raised, command has NOT been executed");
            ss="Exception raised, command has NOT been executed";
            t.printStackTrace();
        return ss;
    }Edited by: Rodolfo Ferrari on Jul 23, 2009 10:40 PM

  • Help Modifying run_report_object to work in Oracle 11g

    I need help with my code.  I'm running the Weblogic 10.3.6 and Oracle 11gR2 Forms/Reports.  My original Forms/Reports was working in Oracle 10g Forms/Reports, but now i can't figure out how to modify the code to run in 11g with "in-process" report server.  I know you can omit the server name in the web.show_document, but not sure how to modify this code. Help Please...
    Procedure ReportXXX is
         ro_report_id                    REPORT_OBJECT;
         str_report_server_job     varchar2(100);
         str_job_id                         varchar2(100);
         str_url                              varchar2(100);
         PL_ID                              PARAMLIST;
    Begin
         PL_ID := Get_parameter_list('TEMPDATA');
    if not ID_NULL(PL_ID) then
         DESTROY_PARAMETER_LIST(PL_ID);
    END IF;
    PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
    RO_Report_ID := FIND_REPORT_OBJECT('NAME OF REPORT IN OBJECT NAVIGATOR');
    ADD_PARAMETER(PL_ID, 'V_PROJ_CD', TEXT_PARAMETER, 'C7I');
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_FILENAME, 'actual location of the report to run');
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_OTHER, 'paramform=no;);
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, FILE);
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'PDF');
    SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'REP1');  --with Oracle 11g using "in-process" so how to reference?
    Str_Report_Server_Job := RUN_REPORT_OBJECT (RO_Report_ID, PL_ID);
    Str_Job_ID := substr(str_report_server_job, length('REP1') + 2, length(str_report_server_job));
    str_URL  := '/reports/rwservlet/getjobid' || str_job_id || '?server=REP1';
    WEB.SHOW_DOCUMENT(STR_URL, '_SELF');
    DESTROY_PARAMETER_LIST(PL_ID);
    end;
    thank you,
    steven

    If we want to execute form in A server to run report that reside in B server, we can use web.show_document with B server host name / port and report servlet parameter.
    But is it possible if we use run_report_object ? (No share admin , no cluster)
    Yes.
    We have your same configuration (two independent FMW Linux machines), and we use run_report_object to run all our reports. Some time ago, for reasons that I don't detail here, we had to stop one of the reports servers, and we used the other one, with no problems at all.
    The reports server name is unique within the network, and you can use any reports server that is visible by
    rwdiag.sh -findAll

  • UTL_FILE works on Oracle 10 ?

    The following code works on Oracle 9.1.0.2.
    I would like to know if it will work on Oracle 10.
    vDiretorio_servidor_entrada varchar2(50):='c:\oracle_temp_dir\entrada';
    vUTL_ARQUIVO:=UTL_FILE.fopen(vDiretorio_servidor_entrada,vArquivo,'r', 4000);
    utl_file.get_line(vUTL_ARQUIVO, vLinha);
    UTL_FILE.fclose(vUTL_ARQUIVO);
    UTL_FILE.fremove(vDiretorio_servidor_entrada,vArquivo);
    Thanks

    Hi,
    Works without problems. For more information take a look at [url http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm#sthref14093]documentation
    Cheers
    Legatti

  • Does INNER JOIN work with Oracle 8i ? (ORA-00933)

    hi,
    I try to execute the sql:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    INNER JOIN
    HR_EMP A1
    ON
    A0.MANAGER_ID=A1.EMP_NO
    WHERE
    A1.NAME = 'michael'
    but I caught an exception:
    java.sql.SQLException: ORA-00933: SQL...(message in
    chinese)
    Does INNER JOIN work with Oracle 8i ?
    thanks.

    INNER JOIN syntax is introduced in 9i, it does not exists in 8i. You can rewrite your statement:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    , HR_EMP A1
    WHERE
    A0.MANAGER_ID=A1.EMP_NO
    AND
    A1.NAME = 'michael'

  • SQL file not working in Oracle

    I cannot get all my tables to work in Oracle, can anyone see where i'm going wrong?
    CREATE TABLE Property
    (Property_Num CHAR (4) PRIMARY KEY,
    Property_Address CHAR (25),
    Property_City CHAR (15),
    Property_State CHAR (2),
    Property_Zip CHAR (5),
    Property_Price DECIMAL (15,2),
    Property_Type CHAR (15));
    CREATE TABLE Owner
    (Owner_Num CHAR (3) PRIMARY KEY,
    Property_Num CHAR (4),
    Owner_Name CHAR (15),
    Owner_Telephone CHAR (15));
    CREATE TABLE Inspection
    (Inspection_Code CHAR (4) PRIMARY KEY,
    Inspection_Type CHAR (20),
    Inspection_Description CHAR (30),
    Owner_Num CHAR (3),
    Inspection_Date DATE (15));
    CREATE TABLE Realtor
    (Realtor_Num CHAR (2) PRIMARY KEY,
    Inspection_Code CHAR (4),
    Realtor_Name CHAR (30),
    Realtor_Telephone CHAR (15));
    INSERT INTO Property
    VALUES ('0001', '245 Benner St', 'Philadelphia', 'PA', '19111', '152.000.00', 'Townhome');
    INSERT INTO Property
    VALUES ('0002', '327 Silver Ave', 'Willow Grove', 'PA', '19090', '260.000.00', 'Duplex');     
    INSERT INTO Property
    VALUES ('0003', '9243 Treaty Rd', 'Philadelphia', 'PA', '19114', '190.000.00', 'Single Family');
    INSERT INTO Property
    VALUES ('0004', '225 Chestnut St', 'Philadelphia', 'PA', '19103', '245.000.00', 'Condo');
    INSERT INTO Property
    VALUES ('0005', '511 Franklin Ave', 'Cherry Hill', 'NJ', '08002', '225.000.00'', 'Single Family');
    INSERT INTO Owner
    VALUES ('101', '0001', 'John Smith', '267-333-4667');
    INSERT INTO Owner
    VALUES ('102', '0002', 'Joe Taylor', '215-657-2200');
    INSERT INTO Owner
    VALUES ('103', '0003', 'Debra Jones', '215-745-9087');
    INSERT INTO Owner
    VALUES ('104', '0004', 'Frank Martin', '267-457-9300');
    INSERT INTO Owner
    VALUES ('105', '0005', 'Drew Hunt', '856-908-3200');
    INSERT INTO Inspection
    VALUES ('1001', 'Pre-Listing Check', 'Passed all eight tests', '101', '2/16/10');
    INSERT INTO Inspection
    VALUES ('1002', 'Walk-In', 'Property up to date on requirements', '102', '3/11/10');
    INSERT INTO Inspection
    VALUES ('1003', 'Appointment', 'All checks upo to date', '103', '1/15/10');
    INSERT INTO Inspection
    VALUES ('1004', 'General Check', 'Property is in good shape to sell', '104', '3/14/10');
    INSERT INTO Inspection
    VALUES ('1005', 'Request', 'Everything requested is up to date', '105', '2/22/10');
    INSERT INTO Realtor
    VALUES ('01', '1001', 'Tim Simpson', '267-543-2267');
    INSERT INTO Realtor
    VALUES ('02', '1002', 'Bill Bradley', '215-754-2330');
    INSERT INTO Realtor
    VALUES ('03', '1003', 'Phil Harris', '215-742-6687');
    INSERT INTO Realtor
    VALUES ('04', '1004', 'Sam Brown', '267-277-5500');
    INSERT INTO Realtor
    VALUES ('05', '1005', 'April Young', '856-228-3550');

    I changed everything, can someone please check these tables in Oracle. I am in school with no access to Oracle.
    CREATE TABLE Property
    (Property_Num CHAR (4) PRIMARY KEY,
    Property_Address CHAR (25),
    Property_City CHAR (15),
    Property_State CHAR (2),
    Property_Zip CHAR (5),
    Property_Price DECIMAL (15,2),
    Property_Type CHAR (15));
    CREATE TABLE Owner
    (Owner_Num CHAR (3) PRIMARY KEY,
    Property_Num CHAR (4),
    Owner_Name CHAR (15),
    Owner_Telephone CHAR (15));
    CREATE TABLE Inspection
    (Inspection_Code CHAR (4) PRIMARY KEY,
    Inspection_Type CHAR (20),
    Inspection_Description CHAR (40),
    Owner_Num CHAR (3),
    Inspection_Date DATE );
    CREATE TABLE Realtor
    (Realtor_Num CHAR (2) PRIMARY KEY,
    Inspection_Code CHAR (4),
    Realtor_Name CHAR (30),
    Realtor_Telephone CHAR (15));
    INSERT INTO Property
    VALUES ('0001', '245 Benner St', 'Philadelphia', 'PA', '19111', 152.00, 'Townhome');
    INSERT INTO Property
    VALUES ('0002', '327 Silver Ave', 'Willow Grove', 'PA', '19090', 260.00, 'Duplex');
    INSERT INTO Property
    VALUES ('0003', '9243 Treaty Rd', 'Philadelphia', 'PA', '19114', 190.00, 'Single Family');
    INSERT INTO Property
    VALUES ('0004', '225 Chestnut St', 'Philadelphia', 'PA', '19103', 245.00, 'Condo');
    INSERT INTO Property
    VALUES ('0005', '511 Franklin Ave', 'Cherry Hill', 'NJ', '08002', 225.00, 'Single Family');
    INSERT INTO Owner
    VALUES ('101', '0001', 'John Smith', '267-333-4667');
    INSERT INTO Owner
    VALUES ('102', '0002', 'Joe Taylor', '215-657-2200');
    INSERT INTO Owner
    VALUES ('103', '0003', 'Debra Jones', '215-745-9087');
    INSERT INTO Owner
    VALUES ('104', '0004', 'Frank Martin', '267-457-9300');
    INSERT INTO Owner
    VALUES ('105', '0005', 'Drew Hunt', '856-908-3200');
    INSERT INTO Inspection
    VALUES ('1001', 'Pre-Listing Check', 'Passed all eight tests', '101', to_Date('2/16/10','mm/dd/yyyy'));
    INSERT INTO Inspection
    VALUES ('1002', 'Walk-In', 'Property up to date on requirements', '102', to_Date('3/11/10','mm/dd/yyyy'));
    INSERT INTO Inspection
    VALUES ('1003', 'Appointment', 'All checks upo to date', '103', to_Date('1/15/10','mm/dd/yyyy'));
    INSERT INTO Inspection
    VALUES ('1004', 'General Check', 'Property is in good shape to sell', '104', to_date('3/14/10','mm/dd/yyyy'));
    INSERT INTO Inspection
    VALUES ('1005', 'Request', 'Everything requested is up to date', '105', to_date('2/22/10','mm/dd/yyyy'));
    INSERT INTO Realtor
    VALUES ('01', '1001', 'Tim Simpson', '267-543-2267');
    INSERT INTO Realtor
    VALUES ('02', '1002', 'Bill Bradley', '215-754-2330');
    INSERT INTO Realtor
    VALUES ('03', '1003', 'Phil Harris', '215-742-6687');
    INSERT INTO Realtor
    VALUES ('04', '1004', 'Sam Brown', '267-277-5500');
    INSERT INTO Realtor
    VALUES ('05', '1005', 'April Young', '856-228-3550');

Maybe you are looking for

  • Looking for a Better Search Solution

    One of my company's products has a large number of configuration options that we purposefully don't include in the regular online help. We have been providing a separate PDF of the settings, but we are now switching to an online help format (a separa

  • IDOC to JDBC Scenario error

    Hi All, I am doing a IDOC to JDBC Scenario.I am done with IR and ID. The Table in the DB is TABLE1 with Field1 and Field2. Now when I run thescenario it throws an error , 2009-03-19 12:41:06 Success INSERT INTO  TABLE1 (Field1, Field2) VALUES (KM2478

  • Adobe Premiere Pro CS5.5 Crashing on Render/Encode

    So, this is a pretty non-complicated problem. I think I have narrowed it down. So basically it's this, I try and render footage that is about 10 minutes long. About 3/4's of the way through that Adobe Premiere Pro crashes. It just shuts down, no warn

  • Two Qs: Help to partition 800 FireWire, &Any FireWire 800 Router/Hub users?

    Needed more hard drive, so I added a 2TB-FireWire 800 drive to system. First thing on it is time machine backup. Would like to reconfigure it for the backup along with freeing up space on the main internal drive by moving files/applications, etc onto

  • Need to assign password to adobe reader file?

    I have a document saved in adobe reader that I would like to password protect.  What adobe download should I use; funds are very limited are there any trial versions?