Procedure of... Please take a look and give your suggestion

Hi all

Please have a procedure below.
Suggest me if I do something to make it more effective?
Because I am very very new to pl/sql.
I have to send to the revision of the code. Before just to make sure that everything is good and logically and all.
Thanks in advance.
PROCEDURE proc1 (
  in_report_parameter_id   IN      NUMBER,
  in_date_format_mask      IN      VARCHAR2,
  in_start_date_time       IN      TIMESTAMP,
  in_end_date_time         IN      TIMESTAMP
)
AS
     
    my_current_date_time TIMESTAMP;            
 
          
BEGIN
     
       my_current_date_time := TRUNC(in_start_date_time);
       
       DELETE FROM table1;
 
  LOOP
    
     EXIT WHEN my_current_date_time >= in_end_date_time;
       
     INSERT INTO table1 (
                 date_time )
     VALUES (my_current_date_time);
                  
      my_current_date_time := my_current_date_time + numtodsinterval(1, 'DAY');
               
  END LOOP;
        
  DELETE FROM table1
     WHERE   TRUNC (date_time) IN
     (
          SELECT TO_TIMESTAMP(report_parameter_value, in_date_format_mask)
            FROM report_parameters
          WHERE report_parameters.report_parameter_id    = in_report_parameter_id
          AND report_parameters.report_parameter_group = edr_rpt_constants_pkg.date_format_mask_group
          AND report_parameters.report_parameter_name  = edr_rpt_constants_pkg.excluded_date_name
     );

END proc1;

Hello

You don't mention what the procedure is supposed to do, so I can't say if it does at all, and still less well. Put some comments in the code to describe what you are doing.

To remove all the lines of table1, "TURNCATE TABLE table1" is much faster than "DELETE FROM table1". You cannot RESTORE a TRUNCATE TABLE command, however.

You can INSERT exactly the lines you want in a single INSERT statement. There is no need of a LOOP (which is inefficient). I'll try to find a link and post it later. (Fact: see below.)
There is no need to add the lines you want to DELETE: Add a WHERE clause so that they don't get inserted in the first place.

Published by: Frank Kulash, June 18, 2009 13:29

[This thread | http://forums.oracle.com/forums/message.jspa?messageID=3351634#3351634] shows how to generate a result set that contains one line per day between two given dates. You can use it in a «INSERT INTO table1 (date_time) SELECT...» "statement.

Tags: Database

Similar Questions

  • Can someone please take a look at and point out the flaws in the chosen components.

    I'll buy components for the creation of 2 new machines to vsphere installation 5. The configurations of these are the following:
    Computer1:
    Core i5 2500
    ASUS P8H67-M PRO H67
    G.Skill Ripjaws - memory - 8 GB: 2 x 4 GB DIMM 240-pin - DDR3 - 1333 MHz
    2 TB WD SATA western digital Caviar Green
    Cooler Master Elite 370
    Corsair CMPSU - 600GS Gaming Series power supply SMPS 600W
    Samsung 22 X DVDRW desktop DVD writer internal
    Computer2:
    Core i7 2600
    ASUS Z68 P8Z68-V PRO
    G.Skill Ripjaws - memory - 8 GB: 2 x 4 GB DIMM 240-pin - DDR3 - 1333 MHz
    Seagate 1 TB Barracuda 7200.12 SATA 3 Gb/s
    Cooler Master Elite 430
    Corsair CMPSU - 600GS Gaming Series power supply SMPS 600W
    Both machines will be used for my study of vmware whitebox.
    Can someone please take a look at and point out the flaws in the chosen components.

    Please go through the link below

    http://www.VMware.com/resources/compatibility/search.php

    http://www.VMware.com/support/vsphere5/doc/vSphere-ESX-vCenter-Server-50-release-notes.html#beforeyoubegin

    Yours,

    Satya

  • Please take a look at this Code...

    Sorry I can't be more precise in the subject line.

    Here is the page: pictopoetry.co.uk/2011/01/rubber-dub-ducky/

    Please take a look at the code that makes the poem itself.  It scares me half to death!

    This site is almost ready and I've lost sleep more to know how best to present these poems.  Obviously, the page layout is essential and I won't make them.  If it was me, I do in Illustrator and save it on in .png.  I tried to help the poet to do this but in fact, she prefers to put it in an HTML editor, but the code with all these < p > tags random and nonsense is just horrible.

    I would appreciate any thoughts you might be able to offer to try to find a good work around for the poet, me and Google!

    Thank you

    Martin

    Hi Martin

    est courte pour préformaté, que cela signifie que tout ce que vous entrez dans la balise s’affiche exactement comme entrée.

    PZ

  • Code to add to display the results I need please take a look

    Help, please

    Here is my code:
    SELECT l.location_no,
      l.zone_code,
      la.area_code,
      DECODE (la.area_code, 'WA-60', 'NODA', 'WA-61', 'NODA', 'WA-62', 'NODA', 'WA-63', 'NODA', 'WA-64', 'NODA', 'WA-65', 'NODA', 'WA-66', 'NODA', 'WA-67', 'NODA', 'WA-68', 'NODA', 'WA-69', 'NODA', 'WA-70', 'NODA', 'WA-71', 'NODA', 'WA-72', 'NODA', 'WA-73', 'NODA', 'WA-74', 'NODA', 'WA-74', 'NODA', 'WA-75', 'NODA', 'WA-76', 'NODA', 'WA-77', 'NODA', 'WA-78', 'NODA', 'WA-79', 'NODA', 'WA-80', 'NODA', 'WA-81', 'NODA', 'WA-82', 'NODA', 'WA-83', 'NODA', 'WA-84', 'NODA', 'WA-REED', 'NODA', 'WA-R2', 'NODA', 'WA-R1', 'NODA', 'WA-BIN', 'NODA', 'PA-CDK', 'NODA', 'WA-PALLET', 'NODA', 'WA-BINRESV', 'NODA', 'DA-REPL', 'GOOD') DAREPL
    FROM MOVE.LOCATION L,
      MOVE.LOCATION_AREA LA
    WHERE l.location_no   = la.location_no
    AND l.zone_code NOT  IN ('Z-BINRES', 'Z-LARGE', 'Z-SMALL', 'Z-HVYOVR', 'Z-ENDCAP', 'Z-LOOSE', 'Z-BRKPAK', 'Z-STRLINE', 'Z-FLAT', 'Z-BULKRES', 'Z-GENERAL', 'Z-2PC', 'Z-BULK', 'Z-SSP', 'Z-RUG', 'Z-LOAD', 'Z-SSPBRK', 'Z-HOLD', 'Z-REC-SSP' )
    AND la.area_code NOT IN ('DA-BULK', 'DA-CANREPL', 'WA-TIER', 'WA-OVRFLOW', 'WA-PALLET2', 'WA-SPRING', 'WA-TIER2', 'WA-DOKPIK', 'WA-DP', 'WA-HOLD', 'PA-OSDHOLD', 'PA-REED', 'RA-REC-CDK', 'WA-PALLET2', 'RECEIVING', 'RECEIVING2', 'WA-BINHOT', 'WA-CANDLE', 'WA-REED', 'WA-BIN2', 'WA-BINCOLD', 'PA-CDK', 'PA-HAZMAT', 'PA-HWR', 'PA-XMASCP', 'WA-PALLET', 'WA-BINRESV', 'WA-BIN', 'WA-BULK', 'WA-BRKPAK', 'PA-BRKPRES', 'PA-CANDLES', 'PA-BIN', 'PA-LOOSE', 'PA-HVYOVR', 'PA-BULKRES', 'PA-BRKPAK', 'WA-01', 'WA-02', 'WA-03', 'WA-04', 'WA-05', 'WA-06', 'WA-07', 'WA-08', 'WA-09', 'WA-10', 'WA-11', 'WA-12', 'WA-13', 'WA-14', 'WA-15', 'WA-16', 'WA-17', 'WA-18', 'WA-19', 'WA-20', 'WA-21', 'WA-22', 'WA-23', 'WA-24', 'WA-25', 'WA-26', 'WA-27', 'WA-28', 'WA-29', 'WA-30', 'WA-31', 'WA-32', 'WA-33', 'WA-34', 'WA-35', 'WA-36', 'WA-37', 'WA-60', 'WA-61', 'WA-62', 'WA-63', 'WA-64', 'WA-65', 'WA-66', 'WA-67', 'WA-68', 'WA-69', 'WA-70', 'WA-71', 'WA-72', 'WA-73', 'WA-74', 'WA-75', 'WA-76', 'WA-77', 'WA-78', 'WA-79',
      'WA-80', 'WA-81', 'WA-82', 'WA-83', 'WA-84', 'WA-R1', 'WA-R2')
    ORDER BY 1
    and here are some of my outputs / results:
    LOCATION_NO          ZONE_CODE  AREA_CODE  DAREPL                           
    -------------------- ---------- ---------- -------------------------------- 
    60-02-101            Z-BIN      DA-REPL    GOOD
    60-02-102            Z-BIN      DA-REPL    GOOD
    60-02-201            Z-BIN      DA-REPL    GOOD
    60-02-202            Z-BIN      DA-REPL    GOOD                       
    60-04-101            Z-BIN      DA-REPL    GOOD                             
    60-04-102            Z-BIN      DA-REPL    GOOD                             
    60-04-201            Z-BIN      DA-REPL    GOOD                             
    60-06-101            Z-BIN      DA-REPL    GOOD                             
    60-06-201            Z-BIN      DA-REPL    GOOD                             
    60-06-202            Z-BIN      DA-REPL    GOOD                             
    60-08-101            Z-BIN      DA-REPL    GOOD                             
    60-08-201            Z-BIN      DA-REPL    GOOD                             
    60-08-202            Z-BIN      DA-REPL    GOOD                             
    60-10-201            Z-BIN      DA-REPL    GOOD                             
    60-10-202            Z-BIN      DA-REPL    GOOD                             
    60-12-102            Z-BIN      DA-REPL    GOOD                             
    60-12-202            Z-BIN      DA-REPL    GOOD  
    As you can see the first results for 60-02 there are 4 results, which means they all have the DA-REPL AREA_CODE column:
    02-60-101
    02-60-102
    02-60-201
    02-60-202

    As you can see with results for 60-04(results 5, 6, and 7) there are only 3 places with DA-REPL in AREA_CODE column. 60 04-202 has a DA-REPL in the column AREA_CODE, and that is the real result, that I'm looking. Short to manually search through 2-5 000 results and manually find results with less than 4 is there any code I can add to help here?
    60. 04-101
    60. 04-102
    60. 04-201

    I already tried a much simpler as code THE. AREA_CODE! = DA-REPL, but as you can see above there are so THE > AREA_CODE of to take care of each who has several so although I rul is just one gives me this site with another THE. AREA_CODE

    Hello

    As I said before:

    You can replace the part in brackets after the "with your_query" with your query
    

    Therefore, this:

    with your_query as  (
      select '60-02-101' location_no, 'Z-BIN' zone_code, 'DA-REPL' area_code, 'GOOD' darepl from dual union all
      select '60-02-102', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-02-201', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-02-202', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-04-101', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-04-102', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-04-201', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-06-101', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-06-201', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-06-202', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-08-101', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-08-201', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-08-202', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-10-201', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-10-202', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-12-102', 'Z-BIN', 'DA-REPL', 'GOOD' from dual union all
      select '60-12-202', 'Z-BIN', 'DA-REPL', 'GOOD' from dual
      )
    
    ,pos_loc_no as
    (select '101' pos_loc_no from dual union all
    select '102' pos_loc_no from dual union all
    select '201' pos_loc_no from dual union all
    select '202' pos_loc_no from dual
    )
    
    ,group_with_missing_loc_no as
    (select
      substr(location_no,1,5) loc_no
    
    from
      your_query
    group by
      substr(location_no,1,5)
    
    having
      count(*) < 4
    
    --order by
    --  substr(location_no,1,5)
    )
    
    select
      a.loc_no || '-' || b.pos_loc_no   LOCATION_NO
    
      ,'Z-BIN'                          ZONE_CODE
      ,'DA-REPL'                        AREA_CODE
      ,'MISSING'                        DAREPL
    
    from
      group_with_missing_loc_no   a
      ,pos_loc_no                 b
    
    where
      not exists
            (select
              *
            from
              your_query
            where
              location_no = a.loc_no || '-' || b.pos_loc_no
            )
    order by
      1
    ;
    

    Becomes this:

    with your_query as  (
    
    SELECT l.location_no,
      l.zone_code,
      la.area_code,
      DECODE (la.area_code, 'WA-60', 'NODA', 'WA-61', 'NODA', 'WA-62', 'NODA', 'WA-63', 'NODA', 'WA-64', 'NODA', 'WA-65', 'NODA', 'WA-66', 'NODA', 'WA-67', 'NODA', 'WA-68', 'NODA', 'WA-69', 'NODA', 'WA-70', 'NODA', 'WA-71', 'NODA', 'WA-72', 'NODA', 'WA-73', 'NODA', 'WA-74', 'NODA', 'WA-74', 'NODA', 'WA-75', 'NODA', 'WA-76', 'NODA', 'WA-77', 'NODA', 'WA-78', 'NODA', 'WA-79', 'NODA', 'WA-80', 'NODA', 'WA-81', 'NODA', 'WA-82', 'NODA', 'WA-83', 'NODA', 'WA-84', 'NODA', 'WA-REED', 'NODA', 'WA-R2', 'NODA', 'WA-R1', 'NODA', 'WA-BIN', 'NODA', 'PA-CDK', 'NODA', 'WA-PALLET', 'NODA', 'WA-BINRESV', 'NODA', 'DA-REPL', 'GOOD') DAREPL
    FROM MOVE.LOCATION L,
      MOVE.LOCATION_AREA LA
    WHERE l.location_no   = la.location_no
    AND l.zone_code NOT  IN ('Z-BINRES', 'Z-LARGE', 'Z-SMALL', 'Z-HVYOVR', 'Z-ENDCAP', 'Z-LOOSE', 'Z-BRKPAK', 'Z-STRLINE', 'Z-FLAT', 'Z-BULKRES', 'Z-GENERAL', 'Z-2PC', 'Z-BULK', 'Z-SSP', 'Z-RUG', 'Z-LOAD', 'Z-SSPBRK', 'Z-HOLD', 'Z-REC-SSP' )
    AND la.area_code NOT IN ('DA-BULK', 'DA-CANREPL', 'WA-TIER', 'WA-OVRFLOW', 'WA-PALLET2', 'WA-SPRING', 'WA-TIER2', 'WA-DOKPIK', 'WA-DP', 'WA-HOLD', 'PA-OSDHOLD', 'PA-REED', 'RA-REC-CDK', 'WA-PALLET2', 'RECEIVING', 'RECEIVING2', 'WA-BINHOT', 'WA-CANDLE', 'WA-REED', 'WA-BIN2', 'WA-BINCOLD', 'PA-CDK', 'PA-HAZMAT', 'PA-HWR', 'PA-XMASCP', 'WA-PALLET', 'WA-BINRESV', 'WA-BIN', 'WA-BULK', 'WA-BRKPAK', 'PA-BRKPRES', 'PA-CANDLES', 'PA-BIN', 'PA-LOOSE', 'PA-HVYOVR', 'PA-BULKRES', 'PA-BRKPAK', 'WA-01', 'WA-02', 'WA-03', 'WA-04', 'WA-05', 'WA-06', 'WA-07', 'WA-08', 'WA-09', 'WA-10', 'WA-11', 'WA-12', 'WA-13', 'WA-14', 'WA-15', 'WA-16', 'WA-17', 'WA-18', 'WA-19', 'WA-20', 'WA-21', 'WA-22', 'WA-23', 'WA-24', 'WA-25', 'WA-26', 'WA-27', 'WA-28', 'WA-29', 'WA-30', 'WA-31', 'WA-32', 'WA-33', 'WA-34', 'WA-35', 'WA-36', 'WA-37', 'WA-60', 'WA-61', 'WA-62', 'WA-63', 'WA-64', 'WA-65', 'WA-66', 'WA-67', 'WA-68', 'WA-69', 'WA-70', 'WA-71', 'WA-72', 'WA-73', 'WA-74', 'WA-75', 'WA-76', 'WA-77', 'WA-78', 'WA-79',
      'WA-80', 'WA-81', 'WA-82', 'WA-83', 'WA-84', 'WA-R1', 'WA-R2')
    
    --ORDER BY 1 -- the order by is not needed
    
    )
    
    ,pos_loc_no as
    (select '101' pos_loc_no from dual union all
    select '102' pos_loc_no from dual union all
    select '201' pos_loc_no from dual union all
    select '202' pos_loc_no from dual
    )
    
    ,group_with_missing_loc_no as
    (select
      substr(location_no,1,5) loc_no
    
    from
      your_query
    group by
      substr(location_no,1,5)
    
    having
      count(*) < 4
    
    --order by
    --  substr(location_no,1,5)
    )
    
    select
      a.loc_no || '-' || b.pos_loc_no   LOCATION_NO
    
      ,'Z-BIN'                          ZONE_CODE
      ,'DA-REPL'                        AREA_CODE
      ,'MISSING'                        DAREPL
    
    from
      group_with_missing_loc_no   a
      ,pos_loc_no                 b
    
    where
      not exists
            (select
              *
            from
              your_query
            where
              location_no = a.loc_no || '-' || b.pos_loc_no
            )
    order by
      1
    ;
    

    Kind regards

    Peter

  • After presentation of SSO services cofiguring dosent start, please take a look at

    Gurus of HI how you all did .that come me to the point... without wasting your time

    We have windows 2003 server and oc4j as web application server, we use windows authentication to connect to a remote server and also in machine personal .and authenticate us ldap users in to presentation services, by identifying their names and then using an external table to identify their .so of groups for this authentication and authorization work perfectly.
    so, besides this configured SSO http://sranka.wordpress.com/2008/06/06/enabling-sso-authentication-for-obiee/
    We managed to run the crypto tools and creation of impersonate user and changes to instanceconfig.xml. * GOAL *.
    After the configuration and restart services bi server starts and presentation services dosent .He says to check the system log.when I check conduct viewer for error


    The description for AN event (30) in the Source (Oracle BI Server) cannot be found. The local computer may not have the information necessary registry or message DLL files to display messages from a remote computer. You may be able to use the option/auxsource = flag to retrieve this description; For more information, see Help and Support. The following information is part of the event: [43030]: Oracle BI Server started. Version: 10.1.3.4.1.090414.1900...

    Here is how my config instance looks to...

    <? XML version = "1.0" encoding = "utf-8"? >
    < WebConfig >
    < ServerInstance >
    AnalyticsWeb < DSN > < / DSN >
    < CatalogPath > D:/OracleBIData/web/catalog/bhasker < / CatalogPath >
    < alerts >
    < ScheduleServer > VW2K3-OBIEE < / ScheduleServer >
    < / alerts >
    < AdvancedReporting >
    XmlP < ReportingEngine > < / ReportingEngine >
    XmlP < volume > < / Volume >
    < ServerURI > http://VW2K3-OBIEE:9704 / xmlpserver/services/XMLPService < / ServerURL >
    < WebURL > http://VW2K3-OBIEE:9704 / xmlpserver < / WebURL >
    < AdminURL > http://VW2K3-OBIEE:9704 / xmlpserver/servlet/admin < / AdminURL >
    < AdminCredentialAlias > bipublisheradmin < / AdminCredentialAlias >
    < / AdvancedReporting >
    < JavaHome > C:\Program Files\Java\jdk1.6.0_14 < / JavaHome >
    < BIforOfficeURL > customer/OracleBIOffice.exe < / BIforOfficeURL >
    <!-for a limited set of languages available to users uncomment < AllowedLanguages > tag below and choose a set of language tags subset in the list. The values must be separated by commas. ->
    <!-< AllowedLanguages > ar, cs, da, el, are, fi, fr, hr, hu, it, iw, ja, ko, nl, no, pl, pt, pt - br, ro, ru, sk, sv, th, tr, zh, zh - tw < / AllowedLanguages >->
    <!-to set up a limited locale is available to users uncomment < AllowedLocales > tag below and choose a subset of tags of locale set in the list. The values must be separated by commas. ->
    <!-- <AllowedLocales>ar-dz,ar-bh,ar-dj,ar-eg,ar-iq,ar-jo,ar-kw,ar-lb,ar-ly,ar-ma,ar-om,ar-qa,ar-sa,ar-so,ar-sd,ar-sy,ar-tn,ar-ae,ar-ye,cs-cz,da-dk,de-at,de-ch,de-de,de-li,de-lu,el-gr,en-au,en-ca,en-cb,en-gb,en-hk,en-ie,en-in,en-jm,en-nz,en-ph,en-us,en-za,en-zw,es-ar,es-bo,es-cl,es-co,es-cr,es-do,es-ec,es-es,es-gt,es-hn,es-mx,es-ni,es-pa,es-pe,es-pr,es-py,es-sv ,es-uy,es-ve,fi-fi,fr-be,fr-ca,fr-ch,fr-fr,fr-lu,fr-mc,hr-hr,hu-hu,id-id,it-ch,it-it,iw-il,ja-jp,ko-kr,ms-my,nl-be,nl-nl,no-no,pl-pl,pt-br,pt-pt,ro-ro,ru-ru,sk-sk,sv-fi,sv-se,th-th,tr-tr,zh-cn,zh-mo,zh-sg,zh-tw</AllowedLocales> -->
    <!-< ArchiveIbots > < disconnected > true < / ArchiveIbots > < DisconnectedDir > offline < / DisconnectedDir > < / disconnected >->
    <! -other settings... - >
    < CredentialStore >
    "< CredentialStorage type ="file"path="D:\OracleBIData\web\config\credentialstore.xml "password ="another_secret"/ >
    <! -other settings... - >
    < / CredentialStore >
    <! -other settings... - >
    < Auth >
    < SSO enabled = "true" >
    < ParamList >
    <! -IMPERSONATE param is used to get the user name of the authenticated user and there->
    < Param name = 'Seem the IDENTITY' source = 'serverVariable"nameInSource ="REMOTE_USER"/ >
    < / ParamList >
    < / SSO >
    < Auth >
    <! -other settings... - >
    < / ServerInstance >
    < / WebConfig >
    Please tell me where I am doing wrong, your help is greatly appreciated...

    Your first message:

    "as web application server oc4j, we use windows authentication to connect to a remote server and also in machine personal .and authenticate us ldap users in to presentation services.

    You can either use:

    -IIS with Windows authentication configured as SSO or
    -You are using OC4J without SSO using LDAP authentication.

    You can't do both. Get you "You are not currently connected" because the BI server is unable to get the currently logged in user. You have defined a configuration of SINGLE sign-on, but there is no App Wep setting the user into REMOTE_USER. How do you think the BI server to know who is logging in?

  • The guy who spent the OSP, please take a look

    Hi all!
    I work a year 1 s/n, and next summer I want to try to pass exams of OCA\OCP, so I decided to start studying now. Find books on Amazon, maybe someone has already bought and can advise what books are be more useful/better:

    1 http://www.amazon.com/Oracle-Database-Administration-Exam-Guide/dp/0071597093/ref=sr_1_11?ie=UTF8 & qid = 1347816347 & sr = 8-11 & keywords = ocp + oracle
    2 http://www.amazon.com/Oracle-Database-Fundamentals-Guide-ebook/dp/B001AEF8W0/ref=sr_1_10?ie=UTF8 & qid = 1347816385 & sr = 8-10 & keywords = oca + oracle
    3 http://www.amazon.com/Oracle-Database-Administration-Guide-1Z0-052/dp/0071591028/ref=sr_1_4?ie=UTF8 & qid = 1347816329 & sr = 8-4 & keywords = oca + oracle

    OR I can buy only this and this will be sufficient:
    http://www.Amazon.com/Oracle-database-all--Guide-CD-ROM/DP/0071629181/ref=sr_1_1?ie=UTF8 & qid = 1347816310 & SR = 8-1 & Keywords = OCA

    There is also perhaps best books?

    Thank you!

    I feel like these books and exams, importance, it is that they contain errors.

    In addition to using these books as a source... get a book of Tom Kyte, Jonathan Lewis, and/or Christian Antognini so that in addition to the review knowing answer, you know the right answer.

    http://www.morganslibrary.org/bookrev.html

    Years, then Oracle at the University, I went by a consideration of the teaching of the guides with a yellow highlighter to highlight incorrect answers. I ran out of ink before I ran out of pages: it was ugly.

  • Please take a look at this file? Help me? : D

    I posted it on MEGA, in the .zip file I posted the .fla and .swf files...

    When I test the file, on the bottom (in all rooms), on the Center, I have this:

    Captura de Tela 2013-07-27 às 23.38.17.pngI really want to go out this "message"...

    How can I do? = D

    The file is here: https://mega.co.nz/#! l5pEFYTI. IFkKX0Py2vQehVn7ct0fJCU32Oc26GBQLYgaSke0kdY

    Hey Emerson,

    The assets of jigsaw puzzle and the code to generate the blocks is in the JigsawPuzzleShim compiled clip instance and there is no way, it can be replaced until and unless we get the source files used to create this component.

    Thank you and best regards,

    Roger Simon

    Adobe Flash Professional Team

  • desperate man! Please take a look!

    Hi everyone - I've tried to sort myself but

    I have a ms access database
    Cold Fusion 7

    everything on my host server

    1. my Japanese and English isin database
    2 English fine poster
    3. Japanese landed?
    4. the data sheet is save in arial code
    5 cold fusion db is the unicode value
    6. I have included the code utf 8 to make fonts display correctly in cold fusion, but I do not know why the Japanese comes out in? -J' read something on utf 16 but...
    the page im in trouble with - http://www.healthhokkaido.com/files/symptom/itemDetail.cfm?id=1
    any ideas?
    really need this sorting - under pressure

    Thank you very much
    Mark

    Your page is encoded in UTF-8 format. Ok.

    But these points of question marks mean that the data is not correctly stored in your Access database or you have not used the 'Microsoft Access with Unicode' driver when configuring the data source in the CF administrator

  • Take a look at the code and help me

    Hello

    Please take a look at the code. I set the height of the div #wrapper auto and under this div, I have 2 divs with height of 400px. What I leave me puzzled, when I gave the height of the #wrapper like car, why is it not expanded to accommodate the two child divs? Can someone help me?

    Thank you

    Gerard

    gaurav_ch wrote:
    > Please take a look at the code. I set the height of the div #wrapper as
    > car and under this div, I have 2 divs with height of 400px. What I am
    > confused on is when I gave the height of the #wrapper like car, why is
    > He enlarged not to welcome the two child divs? Can someone help me?

    This is because the two div inside the envelope are launched.

    --
    Adobe Community Expert David Powers
    Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Microsoft never takes a look at the error reports I send?... it doesn't seem that you do because nothing is solved and I get the same error reports!

    I've been having problems with my computer, I continue to send error reports, but apparently, no one throws a look at them at the other end, because I keep having the same problems.  Is there really someone in Microsoft who take a look at the reports we submit?  I would really like to know!

    If you see messages like this:

    Please inform Microsoft this problem

    We have created an error report that you can send to help us improve Generic Host Process for Win32 Services.
    We will treat this report as confidential and anonymous.

    Send error report do not send

    I wouldn't count on return all useful 'response' of MS because allegedly they do not have any of your information (so how would then be able to communicate with you?) if they do not have your information, they say they will definitely preserve confidentiality, but maybe one day your contribution will help the best ways to handle errors and respond in a way that actually works to understand.

    If you choose to send things, don't forget to give long enough the process — sometimes several minutes and you will get a message back that may or may not be interesting to read, but they are usually generic "Thank you for your comments" type messages.  Sound familiar?

    If it is a known problem with a solution, you can be lucky and get some tips on how to solve this problem, but I wouldn't count on it and have never actually seen it work out that way, but I could at least give the error notification mechanism a chance and see what he has to say.  You can also find out more about works XP when you are finished.

    Some people feel that potentially sending your system information (and who knows what else) Microsoft is an intrusion into their privacy and choose to disable the function of «»  Who knows what information you send to Microsoft when you click send error report.

    If you want to know how to disable this feature, let us know and I'll tell you how.

    You probably better to solve your problem in the system the old fashioned way... by yourself (and with the help if you need it), I would like to ask a new question in the appropriate forum.

  • What is the process of transition of 10.6.8 to 10.8.5. After I bought, what I see at $19.99 do I look and what I would do. Please guide me through the process

    What is the process of transition of 10.6.8 to 10.8.5. After I bought, what I see at $19.99 do I look and what I would do. Please guide me through the process

    After the redemption code was sent to you, back up your data, check your applications for compatibility, open the Mac App Store, go to its home page, use the code, wait for Setup to finish downloading (it will take at least a few hours) and follow the instructions on the screen.

    (138473)

  • is it possible to tell me how I can make program in labview that take black and with image pixels and give the coordinates of black or white pixels again to me.

    Hello everyone

    is it possible to tell me how I can make program in labview that take black and with image pixels and give the coordinates of black or white pixels again to me.

    It depends on the image and the module LabVIEW available to you. LabVIEW can open bitmap and png files and convert them into tables: if it's really a monochromatic (depth of 1 bit) you get a table 2D boolean, T for white, F for black. Just look at the index of the item to its details (don't forget that LabVIEW does not use the order of rows and columns, so you must transpose and reflect the table). If you have a 24 bit bitmap, the table will contain the color in hexadecimal synthesis (000000 for black, FFFFFF is white and so on); Yet once, you simply check if the element of the array correspond to your requirements and get its index.

    With the vision that you module con open other pictures and perform advanced on them without convert them into tables. Anyway, you can just type the extension of your image using LabVIEW and see what you get.

    Here is a code snippet to open a monochromatic image

  • now, I'm using windows 7 Home Basic but in my google chrome and firefox does not please give me suggestion?

    now, I'm using windows 7 Home Basic but in my google chrome and firefox does not please give me suggestion?

    Looks like you may have a virus or other malware. Get your updated antivirus program and boot into Safe Mode. Note that some viruses can hide from your normal antivirus program, so you really need to scan in Safe Mode. To enter in Safe Mode when you turn on first, press F8 on every seconds until you get the menu, and then select Safe Mode. Then run a complete system scan.

    -

    Microsoft has suggestions and offerings to

    http://Windows.Microsoft.com/en-us/Windows7/how-do-I-remove-a-computer-virus

    -

    Moderator Forum Keith has a few suggestions along this line to

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-performance/Windows-Explorer-has-stopped-working/6ab02526-5071-4DCC-895F-d90202bad8b3

    -

    If that suits him fine. If this is not the case, use system restore to go back to an earlier date at the beginning of the problem. To run system restore, click Start-> programs-> Accessories-> System Tools-> system restore. Click on the box that says show more restore points.

    -

    You can check the corrupted system files. Open an administrator command prompt and run SFC if the above does not help. Click START, and then type CMD in the search box, right-click on CMD. EXE and click run as administrator. Then, from the command prompt type sfc/scannow.

    -

    Finally if all else fails, you can look at the rather cryptic system event log. To do that click on start-> Control Panel-> administration-> event viewer tools. Once in Event Viewer system log-click and scroll entries looking for these "error" with indicator see if you can find guidance on where the problem may be.

    `

    When you get your system in good working condition, I invite you to back up your system up to an external hard drive and make it regular periodic updates.

    -

    I hope this helps. Good luck.

  • I need to reactivate Photoshop CS4 because I have a new hard drive in a reminder for my 2.5 yr old iMac last operating system running. When you open the program, I was told to contact Adobe support and give them an error code: 150:30. Please help with per

    I need to reactivate Photoshop CS4 because I have a new hard drive in a reminder for my 2.5 yr old iMac last operating system running. When you open the program, I was told to contact Adobe support and give them an error code: 150:30. Please help with permission. ?

    You can repair it yourself. I have a screenshot guide. You use app the Mac Terminal and a python (.py) script that comes with the recovery of the license for the Mac package.

    Don't forget to leave a space after typing sudo python and note that your password will not display any points. Simply enter it blind.

    Start 11 Message and take your time. It does not work. Layout error 150:30 opening Photoshop cs4 on Macbook Pro

    Gene

  • It is an emergency and please give a suggestion.

    Hello guys, please help my iphone is disabled mode so I want to restart but I do not know my password to icloud and to give identification of email to reset the icloud so ID you please will give a suggestion to me.Please,help help me.my id icloud is *.

    < personal information under the direction of the host >

    See here for help: https://appleid.apple.com/#! & page = signin and https://support.apple.com/en-us/HT204306

Maybe you are looking for

  • Tecra M7 - meet a finger instead of the pen

    A question silly here of a novice. Is it possible to get a Tecra M7 to meet with a finger on the screen instead of the pen? I think the use of virtual organ software (Midizer) that displays a console organ on the screen, it is then connected via Midi

  • Display drivers do not work on Satellite L650 PSK1JE

    I would not pay 1.50 per minute for the Toshiba hotline get direct assistance with my problems with a product i once paid money (not bad), the Toshiba Satellite L650 (PSK1JE) laptop, so I try this way and hope that I get help. Sorry for my bad Englis

  • Equium A100: CD/DVD drive stopped working code 22

    Toshiba Satellite A100 on Vista operating.CD/DVD drive has stopped working and shows it as being disabled. Tried to re - activate but the error code 22. Can anyone help?

  • Can not activate WLAN Adapter

    Hi, I have a Satellite M40 (PSM40C), but the wireless LAN adapter will not be activated after power on, the same with the switch wireless power. I had the same problem 5 months ago. I installed last BIOS Uptade was fine, but now, I had the same probl

  • LaserJet pro m127fn mfp: fax log report

    How to open a journal report or faxes Fax activity? Not only the most recent Telec.