Regarding the authorized request property if the data block is the database no.

I'm now a project located on Oracle Forms 10g.

There is a DataBlock with certain properties such as

1 block of data in the databases: No.
2 query allowed: Yes
3 interrogate the Data Source Type: table
4 insert authorized: Yes
5 update allowed: Yes
6. Remove allowed: Yes

If the DataBlock is not database data block are then properties no. 2 to 6 relevent?
I think these properties must be set to NO and the query data Source Type must be None.
Can someone help me please.

Yes... The block of database property must be "NO"... I made the mistake of typo... You can also change other properties... No problem in that

Tags: Oracle Development

Similar Questions

  • Message from blackBerry Smartphones: the page you requested was created using data from the form.

    While closing a link to expedia.ca a message come to say: the page you requested was created using data from the form. This page is no longer available.  If you resend the data, any action that has been specified by the form will be repeated.  You want to resubmit the data?  When I click Yes or no, nothing happens except that the message just reappears.  I can't get rid of it so I can't do anything else on my phone, except to answer a call if someone calls me.  How can I get rid of this message from my phone?  I tried to turn it works... even by leaving off the coast for 5 minutes before turning turn it back on.  I can't even check my OS because I do not what anyone on my phone.  I hope someone can help me with this.

    Have you tried a battery pull?  This should fix a problem as you described.

    With your phone, remove the battery, then replace a minute later.  This will do all sorts of wonderful things to your phone for free unclaimed memory, delete no cited source points and make your phone run smoothly.

    Try it and let us know if it does the trick.

  • [ADF, JDev12.1.3] What is the right approach to manage the Value property of a Date of entry through a bean?

    Hallo,

    I created a custom search form by dragging on the CIU af:inputText and af:inputDate.

    I have some difficulties in the treatment of af: inputDate CIU.

    I've linked the Value of each af:inputDate property to a Date variable in a range backingBean bean.

    It is the correct type of Date or can I use the String type?

    When the user clicks the button to search for the form of the search_action in the bean creates the query with parameters (identified by (?) because I am using SQL Server as DBMS).

    Then, I need programmatically check the values of af: inputDate CIU and then use them to define the query parameters.

    Are there property should I settle for FA: inputDate CIU to "do a good job? For example Valdiator, converter...?

    I see that when I use the calendar of af: inputDate, the field is entered in the format dd/mm/yyyy is good for me but I'm not able to uderstand how to treat the value to check by program and then use it to set a parameter to the query of VO.

    I also want to set the initial value of some CIU af:inputDate in the bean. It takes for example the 1st of the month 6 months ago. What code would I use to do this?

    You could you kindly help me (better if give me a simple example)?

    Thank you

    Federico

    I've linked the Value of each af:inputDate property to a Date variable in a range backingBean bean.

    It is the correct type of Date or can I use the String type?

    Date type is correct.

    Are there property should I settle for FA: inputDate CIU to "do a good job? For example Valdiator, converter...?

    Well, if you need validate the date, then you will need validator (or check the value in managed bean)

    It goes the same for the converter.

    I see that when I use the calendar of af: inputDate, the field is entered in the format dd/mm/yyyy is good for me but I'm not able to uderstand how to treat the value to check by program and then use it to set a parameter to the query of VO.

    In your beans, you will get the Date value, so no matter how it is displayed on the user interface.

    To date handling, you can use standard java api as java.util.Calendar

    I also want to set the initial value of some CIU af:inputDate in the bean. It takes for example the 1st of the month 6 months ago. What code would I use to do this?

    Use standard java api to calculate the new date, then assign accessor value in your bean (for example, in the constructor of the bean)

    Dario

  • Purge the concurrent request and/or Manager Data - take long & end with error completed

    Purge the concurrent request and/or Manager Data - take long & end with error completed.

    What ever the age values 30,70,1000

    ****

    Select count (*) in the FND_CONCURRENT_PROCESSES;

    COUNT (*)

    -----

    32149

    ****

    Select count (*) from the FND_CONCURRENT_REQUESTS;

    COUNT (*)

    -----

    585499

    ****

    Request of min | Application of Max date | Date

    -------------------- --------------------

    SEPT. 13.-10 10 OCTOBER 13

    My problem is now solved

    the cause of the problem was:

    After the clone for the new Production Server FND_CONCURRENT_PROCESSES & FND_CONCURRENT_REQUESTS table 'old' lines were still talking to the node that is no longer available in the new production to LOGFILE_NAME and OUTFILE_NAME columns.

    And after the removal of these lines, executes the request was very quick and works as it should work now.

    Thanks for all the help I get here and with the SR team too

  • date format in a direct request of the database

    I have a report with the direct request of the database.
    I have a quick date... I'm storing the date in a Variable named pv_date presentation.

    In the application of direct database, I have a where clause clause:

    WHERE business_date IN (@{pv_date} {' 01 / 01/2013 '})

    When I run the dashboard open for the first time, his throw me an error near TIMESTAMP.

    WHERE business_date IN (TIMESTAMP "2013-01-01 00:00:00")



    AND ALSO when I run this report to dashboard after you've chosen a date say 20/02/2013, I see the query in the form:

    WHERE business_date IN (2013-02-20 00:00:00)

    and that's why throwing error.


    His mistake to launch in both cases. How can I change the format in the WHERE clause.

    Ideally, I want the query to be WHERE business_date IN (' 20 / 02/2013 ') or Business_date IN ('' 2013-02-20)

    Since you are using Direct database application, you can use the database functions specific to your database such as to_date or to_char.
    Its as good as Toad or sql developer.

    I don't think you should use function must be evaluated as Sai said, correct me if I'm wrong.

    Published by: Srini VIEREN on 29 March 2013 09:21

  • I have a trigger to post to the data block request...

    I have a trigger to post to the data block request...
    BEGIN
         IF :SECTION IS NOT NULL THEN
              SELECT DESCRIPTION INTO :BOROUGH FROM C_LOV_BOROUGH WHERE :SECTION = SECTION;
         END IF;
    END;
    Table C_LOV_BOROUGH has many lines

    When I scroll quickly after querying data...
    I get the error ORA-01403, after than scrolling up and down... it disappears... someone can help?

    Use a slider instead of direct SQL SELECT as if you can't find all the lines, would not raise an exception, or use an exception handler to handle all exceptions silk-screened - found.

    DECLARE
     CURSOR c_get_desc IS
       SELECT DESCRIPTION
         FROM C_LOV_BOROUGH
       WHERE SECTION = :SECTION;
    BEGIN
    IF :SECTION IS NOT NULL THEN
      OPEN c_get_desc;
      FETCH c_get_desc INTO :BOROUGH;
      CLOSE c_get_desc;
    END IF;
    END;
    

    Second method:

    BEGIN
      IF :SECTION IS NOT NULL THEN
        SELECT DESCRIPTION INTO :BOROUGH
          FROM C_LOV_BOROUGH
       WHERE SECTION = :SECTION;
      END IF;
    EXCEPTION
      WHEN NO_DATA_FOUND THEN NULL;
    END;
    

    Cursor is safer than direct SELECT SELECT because maybe meet TOO_MANY_ROWS exceptions too... but if you use the slider, he realized the first found line extraction and populate the BOROUGH and if it does not find anything, it won't throw an exception.

  • How can I transfer data from the database in a variable (or array)?

    I made my request according to the example (http://corlan.org/2009/06/12/working-in-flash-builder-4-with-flex-and-php/). Everything works fine. I changed a single function to query the database - add two parameters and get the value from the table to a string format. A test operation shows that everything is ok. If I want to display this value in the text box, I just do drag and drop off service to this element in Design view

    (< s:TextArea = "153" x = "435" id = "nameText" text = "{getDataMeanResult.lastResult [0] .name}" width = "296" height = "89" / > ").

    Also, it works fine, just a warning and encouraged to use ArrayCollection.getItemAt ().

    Now, I want to send the value to a variable or an array, but in both cases, I get an error: TypeError: Error #1010: a term is undefined and has no property..

    How can I pass a value to the database in a variable? Thank you.

    public var nameTemp:String;

    getDataMeanResult.token = authors.getDataMean (arrayOfNumber [0], dir_id);

    nameTemp = getDataMeanResult.lastResult [0] .name;

    public var nameArray:Array = new Array();

    for (var i: uint = o; i < 3; i ++) {}

    getDataMeanResult.token = authors.getDataMean (arrayOfNumber [i], dir_id);

    NomTableau [i] = getDataMeanResult.lastResult [0] .name;

    }

    And how do I use syntax highlighting in this forum?

    Astraport2012 wrote:

    Thank you.

    Then this simple question: How can I place a mySQL database data in a variable using the wizards FB4 (connect with PHP)?

    If you can show examples please.

    I couldn't find examples. Send data to a field text or DataGrid - much, but no variable.

    the use of assistants? not sure... it is generally a bad idea to rely on them, because they will never fully what you want anyway. I would recommend learning abit of PHP and manage by yourself, because it allows you to manage everything exactly as you wish.

    small example of communicating with a database using PHP + FB4:

    mount a database

    write you a small script that will access your database, get a value, for example:

    ";
    
        while($row = mysql_fetch_array($result))
        {
            if($row['messageID'] == "3")
            {
                print $row['message'];
            }
        }
        print "\n";
    ?>
    

    This will get the message with ID '3 '.

    make an HTTPService in FB4 app to call this Script, as follows:

    
    
        
            
    
            
        
    
        
            
        
        
    
    
    

    and the value must be picked up by the Script and properly stored in a variable

  • Regarding the backup problem

    Hi all

    Recently, my database is down during backup. I tried to open the database, but it gave the error «File needs more recovery»

    I checked the backup mode is not active. I used the command "recover database until cancel using backup control file" (which should not be used) instead of only "recover the database.

    Now the database is looking in the backup control file and asking for more log archiving of recovery which has not yet occurred. do I have to cancel this backup control file to use the original control file to recover the database.

    Please notify.

    Thanks in advance

    Amit Dwivedi

    Hello

    1. Once you have used the backup control file option, there is no way you can do DB forget "backup control file is used.

    2. even after that application to redo online still records DB should be opened with RESETLOGS.

    3. Please be aware of the risk of open with RESETLOGS, this is the last recommended option.

    NOTE: If there is a system very important and crucial then it is recommended to register a service request with support.

    Refer to: backup and recovery scenarios (Doc ID 94114.1)

    Kind regards

    Ramana Rao - Oracle

    Here it is an example that is set up on 11g DB 11.2.0 on Linux x86_64 only for demonstration purposes:

    -Example Demo starts here-

    SQL > alter tablespace test begin backup;

    Tablespace altered.

    SQL > the judgment;

    ORACLE instance stops.

    -----------------------------------------------------------------------------------------------------------------------

    Comments: Force DB have a script failed

    -----------------------------------------------------------------------------------------------------------------------

    SQL > startup

    ORACLE instance started.

    Total System Global Area 534462464 bytes

    Bytes of size 2230072 fixed

    444598472 variable size bytes

    Buffers data 83886080 bytes

    Redo buffers 3747840 bytes

    Mounted database.

    ORA-10873: file 7 must be either switched off mode backup or recovered media

    ORA-01110: data file 7: ' / home/oracle/app/oracle/oradata/orcl/tet1.dbf'

    -----------------------------------------------------------------------------------------------------------------------

    Comments: DB Complains that a file is in need of recovery backup mode or media

    -----------------------------------------------------------------------------------------------------------------------

    SQL > restore database using backup controlfile until cancel;

    ORA-00279: change 3258225 September at 24/07/2015 05:10:47 necessary to screw 1

    ORA-00289: suggestion: /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_93_%u_.arc

    ORA-00280: change 3258225 thread 1 is in sequence #93

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: on purpose we use here backup control file option to simulate the same error condition

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > select FIRST_CHANGE #, NEXT_CHANGE #, name from v$ archived_log;

    FIRST_CHANGE # NEXT_CHANGE # NAME

    ------------- ------------------- -----------------------------------------------------------------------------------------------

    3244150 3254238 /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_88_bv3ys3h1_.arc

    3254238 3256570 /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_89_bv406xf3_.arc

    3256570 3257119 /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_90_bv407l01_.arc

    3257119 3257697 /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_91_bv4085h7_.arc

    3257697 3258225 /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_92_bv408qpq_.arc

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: The archive log asked o1_mf_1_93_%u_.arc is not yet produced.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > select file #, checkpoint_change # from v$ datafile_header;

    FILE # CHECKPOINT_CHANGE #.

    --------------    -----------------------------------------

    1 3258225

    2 3258225

    3 3258225

    4 3258225

    5 3258225

    6 3258225

    7 3263717<><>

    7 selected lines.

    SQL > alter database end backup;

    Database altered.

    SQL > alter database open;

    change the database open

    *

    ERROR on line 1:

    ORA-01589: must use RESETLOGS or NORESETLOGS option of database open

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: Safe Option: end DB back up and open.

    But DB is aware of this backup control file is used so refuses to open.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > alter database open noresetlogs;

    ALTER database open noresetlogs

    *

    ERROR on line 1:

    ORA-01588: must use RESETLOGS open database option

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: Safe Option: open with NORESETLOGS.

    But DB is aware of this backup control file is used so refuses to open.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > restore database;

    ORA-00283: cool cancelled due to errors

    ORA-01610: recovery using BACKUP CONTROLFILE option must be

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: Safe Option: try with database recovery

    But DB is aware of this backup control file is used therefore requires to use the backup controlfile option

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > restore database using backup controlfile

    ORA-00279: change 3258225 September at 24/07/2015 05:10:47 necessary to screw 1

    ORA-00289: suggestion: /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_93_%u_.arc

    ORA-00280: change 3258225 thread 1 is in sequence #93

    Specify the log: {= suggested |} Filename | AUTO | CANCEL}

    /Home/Oracle/app/Oracle/oradata/ORCL/redo01.log

    ORA-00310: archived log contains sequence 91; sequence required 93

    ORA-00334: archived log: ' / home/oracle/app/oracle/oradata/orcl/redo01.log'

    SQL > restore database using backup controlfile

    ORA-00279: change 3258225 September at 24/07/2015 05:10:47 necessary to screw 1

    ORA-00289: suggestion: /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_93_%u_.arc

    ORA-00280: change 3258225 thread 1 is in sequence #93

    Specify the log: {= suggested |} Filename | AUTO | CANCEL}

    /Home/Oracle/app/Oracle/oradata/ORCL/redo02.log

    ORA-00310: archived log contains sequence 92; sequence required 93

    ORA-00334: archived log: ' / home/oracle/app/oracle/oradata/orcl/redo02.log'

    SQL > restore database using backup controlfile;

    ORA-00279: change 3258225 September at 24/07/2015 05:10:47 necessary to screw 1

    ORA-00289: suggestion: /home/oracle/app/oracle/fast_recovery_area/ORCL/archivelog/2015_07_24/o1_mf_1_93_%u_.arc

    ORA-00280: change 3258225 thread 1 is in sequence #93

    Specify the log: {= suggested |} Filename | AUTO | CANCEL}

    /Home/Oracle/app/Oracle/oradata/ORCL/redo03.log

    Application log.

    Complete media recovery.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: Applied online redo logs manually.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    SQL > alter database open;

    change the database open

    *

    ERROR on line 1:

    ORA-01589: must use RESETLOGS or NORESETLOGS option of database open

    SQL > alter database open noresetlogs;

    ALTER database open noresetlogs

    *

    ERROR on line 1:

    ORA-01588: must use RESETLOGS open database option

    SQL > alter database open resetlogs;

    Database altered.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    Comments: Only able to open with the RESETLOGS Option.

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    ------------------------------- Example Demo Ends here --------------------------------------------

  • disable the data block smartbar menu navigation.

    Hi all
    I use forms 9i, at my request, I'll have 10 Web stack and each containing different data blocks with about 10-15 pieces of data on each to view.
    with the connection credentials, I use to turn on or off certain blocks of data by setting the enabled property of the canvas to true/false. but I realized that even if I turn off the Web, it can be activated by the arrow navigation of oracle smartbar default menu next block there is option to disable the block of data element but what I want doesn't want do not display them at all even not the canvas that is not necessary. definition of each element of data visible and enable property is very repetitive task. so is there another way or what should I do on the other I can stop to navigate to data blocks.

    Thank you
    Rahul

    create KEY-NXTBLK and KEY-PRVBLK triggers at the level of the form with just

    NULL;
    

    as a code.

    To disable the functionality of menu as well as the keyboard navigation.

  • Yes, another question regarding the freezing of Safari - EtreCheck report included

    Yes, another question regarding the freezing of Safari.

    From a little over a month (I think), Safari started freezing regularly whenever I want to open new tabs or switch between tabs. I found myself to leave the program several times per day / hour. I can't identify any specific common cause (other than my MacBook being old) or any new software or updates that might have initiated the question. At first I thought he might have many tabs, I tried to open, but recently it happens even with only a few tabs open.

    I worked through the steps I found in this forum and others: empty the cache, start in safe mode, etc nothing works.

    Based on the previous suggestions, I have downloaded and run EntreReport which I included below. The note and maybe just a distraction, but EntreReport has crashed three times tonight, before he was able to produce the sub report. I ran the report after restarting my system with no other programs running.

    Suggestions are welcome at this stage because I want to start using Chrome or Firefox because I like the transfer procedure between my devices.

    Thank you in advance.

    Ben

    -----------

    EtreCheck version: 2.9.11 (264)

    Report generated 2016-04-28 22:48:58

    Download EtreCheck from https://etrecheck.com

    Time 05:45

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click on the link [check files] help with unknown files.

    Problem: Apps are broken

    Description:

    Safari freeze when opening new tabs / switching between the tabs.

    Hardware Information:

    MacBook Pro (15-inch, mid 2009)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro5, 3

    1 2.66 GHz Intel Core 2 Duo CPU: 2 strands

    4 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = battery check - Cycle count = 389

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1440 x 900

    NVIDIA GeForce 9600M GT - VRAM: 256 MB

    Software:

    OS X El Capitan 10.11.4 (15E65) - since startup time: less than an hour

    Disc information:

    FUJITSU MJA2320BH FFS G1 disk0: (320,07 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 319,21 go-go (54,93 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    HL-DT-ST DVD - RW GS23N)

    USB information:

    Built-in ISight from Apple Inc..

    Card reader Apple

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Guardian:

    Mac App Store and identified developers

    Unknown files:

    ~/Library/LaunchAgents/com. GoodShop.updater.plist

    ~/Library/application support/GoodShop/updater

    A unknown file found. [Check files]

    Kernel extensions:

    / Library/Application Support/Symantec/virus

    [no charge] com.symantec.kext.SymAPComm (11.1.2f17 - 2015-05-23) [Support]

    / Library/Extensions

    [no charge] expressvpn.tap (20150118 - 2016-04-12) [Support]

    [loading] expressvpn.tun (20150118 - 2016-04-12) [Support]

    / System/Library/Extensions

    [no charge] com.DYMO.usbprinterclassdriver.kext (1.1 - SDK 10.9-2016-04-12) [Support]

    com.Silex.driver.sxuptp [no charge] (1.5.1 - 2016-04-12) [Support]

    com.symantec.kext.internetSecurity [no charge] (1.3.2 - 2016-04-12) [Support]

    com.Symantec.kext.IPS [no charge] (3.2 - 2016-04-12) [Support]

    Startup items:

    CMA: path: / Library/StartupItems/cma

    RosettaStoneLtdDaemon: Path: / Library/StartupItems/RosettaStoneLtdDaemon

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [loaded] 8 tasks Apple

    [loading] 165 tasks Apple

    [operation] 65 tasks Apple

    Launch system demons:

    [loaded] 45 tasks Apple

    [loading] 161 tasks Apple

    [operation] 83 tasks Apple

    Launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-04-28) [Support]

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2015-10-31) [Support]

    [operation] com.epson.Epson_Low_Ink_Reminder.launcher.plist (2015-01-19) [Support]

    [loading] com.epson.esua.launcher.plist (2015-06-29) [Support]

    [operation] com.epson.eventmanager.agent.plist (2014-09-21) [Support]

    [loading] com.google.keystone.agent.plist (2016-03-01) [Support]

    [operation] com.mcafee.menulet.plist (2016-03-23) [Support]

    [operation] com.mcafee.reporter.plist (2016-03-23) [Support]

    [loading] com.oracle.java.Java - Updater.plist (2013-11-14) [Support]

    [operation] com.symantec.uiagent.application.plist (2010-11-16) [Support]

    [operation] com.trusteer.rapport.rapportd.plist (2016-03-19) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2015-10-31) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2015-10-31) [Support]

    [loading] com.adobe.fpsaud.plist (2016-04-15) [Support]

    com.DYMO.pnpd.plist [no charge] (2014-10-16) [Support]

    [loading] com.expressvpn.tap.plist (2016-01-27) [Support]

    [loading] com.expressvpn.tun.plist (2016-01-27) [Support]

    [loading] com.google.keystone.daemon.plist (2016-03-01) [Support]

    [loading] com.macpaw.CleanMyMac3.Agent.plist (2016-04-18) [Support]

    [operation] com.mcafee.cspd.plist (2015-05-08) [Support]

    com.mcafee.ssm.ScanFactory.plist [no charge] (2016-03-16) [Support]

    com.mcafee.ssm.ScanManager.plist [no charge] (2016-03-16) [Support]

    [operation] com.mcafee.virusscan.fmpd.plist (2016-03-22) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2010-08-25) [Support]

    [loading] com.oracle.java.Helper - Tool.plist (2013-11-14) [Support]

    [loading] com.symantec.MissedTasks.plist (2009-11-10) [Support]

    [loading] com.symantec.Sched501 - 1.plist (2014-08-27) [Support]

    [loading] com.symantec.Sched501 - 4.plist (2015-01-08) [Support]

    [loading] com.symantec.Sched501 - 5.plist (2015-01-08) [Support]

    [loading] com.symantec.avscandaemon.plist (2009-10-10) [Support]

    [operation] com.symantec.diskMountNotify.plist (2009-09-14) [Support]

    [loading] com.symantec.navapd.plist (2009-09-14) [Support]

    [loading] com.symantec.navapdaemonsl.plist (2009-11-14) [Support]

    [operation] com.symantec.sharedsettings.plist (2009-07-22) [Support]

    [operation] com.symantec.symSchedDaemon.plist (2009-11-10) [Support]

    [operation] com.symantec.symdaemon.plist (2009-03-27) [Support]

    [operation] com.trusteer.rooks.rooksd.plist (2016-03-19) [Support]

    User launch officers:

    com [running]. GoodShop.updater.plist (2013-09-24) [Support]

    [loading] com.adobe.AAM.Updater - 1.0.plist (2015-10-25) [Support]

    [failure] com.facebook.videochat. [entrenched passage] .plist (2014-08-09) [Support]

    [loading] com.macpaw.CleanMyMac3.Scheduler.plist (2016-04-25) [Support]

    Items in user login:

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Application of Google Reader (Google Drive.app/Applications /)

    Dropbox application (/ Applications/Dropbox.app)

    ExpressVPN application (/ Applications/ExpressVPN.app)

    CleanMyMac 3 Menu Application (/ Applications/CleanMyMac 4.app/Contents/MacOS/CleanMyMac 3 Menu.app)

    Other applications:

    [ongoing] com.DYMO.pnpd

    [ongoing] com.getdropbox.dropbox.83552

    [ongoing] com.google.GoogleDrive.81632

    [ongoing] com.macpaw.CleanMyMac3.Menu.80672

    [ongoing] com.mcafee.ssm.ScanManager

    [ongoing] com.mcafee.virusscan.ssm.ScanFactory

    [loading] 420 tasks Apple

    [operation] 193 tasks Apple

    Plug-ins Internet:

    o1dbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-16) [Support]

    Default browser: 601 - SDK 10.11 (2016-04-18)

    Flip4Mac WMV Plugin: 2.4.4.2 (2012-12-25) [Support]

    DYMO Safari Addin: Unknown - SDK 10.9 (2014-10-26) [Support]

    AdobePDFViewerNPAPI: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    FlashPlayer - 10.6: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    Silverlight: 5.1.30514.0 - SDK 10.6 (2015-09-16) [Support]

    QuickTime Plugin: 7.7.3 (2016-04-12)

    Flash Player: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    googletalkbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-11) [Support]

    iPhotoPhotocast: 7.0 (2010-11-15)

    AdobePDFViewer: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    SharePointBrowserPlugin: 14.3.0 - SDK 10.6 (2013-02-09) [Support]

    SiteAdvisor: 2.0 - 10.1 SDK (2015-03-30) [Support]

    JavaAppletPlugin: Java 8 updated 77 03 (2016-04-18) check the version of build

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-03-30)

    Add to wishlist Amazon - Amazon.com - http://www.amazon.com/wishlist?ref=cm_wl_saf_ext (2011-07-09)

    GoodShop - GOODSEARCH LLC - http://www.GoodSearch.com (2013-09-24)

    SiteAdvisor - McAfee - http://www.siteadvisor.com (2015-09-28)

    PIN button - Pinterest, Inc. - http://www.pinterest.com/ (2015-07-03)

    3rd party preference panes:

    Flash Player (2016-04-15) [Support]

    Flip4Mac WMV (2012-05-15) [Support]

    Growl (2015-09-16) [Support]

    Java (2016-04-18) [Support]

    Norton\nQuickMenu (2010-11-16) [Support]

    Trusteer Endpoint Protection (2016-04-18) [Support]

    Time Machine:

    Time Machine not configured!

    Top of page process CPU:

    5% WindowServer

    1% kernel_task

    0% fontd

    0% SymDaemon

    Top of page process of memory:

    445 MB kernel_task

    Mdworker (18) 430 MB

    164 MB Google Reader

    Dropbox 123 MB

    VShieldScanner (4) 66 MB

    Virtual memory information:

    106 MB free RAM

    4.15 GB used RAM (770 MB cache)

    6 MB used Swap

    Diagnostic information:

    April 28, 2016, 22:42:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-224212_[redacted].crash

    com.etresoft.EtreCheck - /Applications/EtreCheck.app/Contents/MacOS/EtreCheck

    28 April 2016, 22:21:42 self-test - spent

    April 28, 2016, 19:49:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194912_[redacted].crash

    April 28, 2016, 19:47:10 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194710_[redacted].crash

    April 28, 2016, 19:38:58 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-193858_[redacted].crash

    April 28, 2016, 19:04:58 ~/Library/Logs/DiagnosticReports/rapportd_2016-04-28-190458_[redacted].crash

    /Library/rapport/*/rapportd.app/Contents/MacOS/rapportd

    April 28, 2016, 06:06:59 /Library/Logs/DiagnosticReports/Safari_2016-04-28-060659_[redacted].hang

    /Applications/Safari.app/Contents/MacOS/Safari

    April 28, 2016, 12:48:04 AM /Library/Logs/DiagnosticReports/SubmitDiagInfo_2016-04-28-004804_[redacted].cpu _resource.diag [details]

    / System/Library/CoreServices/SubmitDiagInfo

    April 27, 2016, 22:01:10 /Library/Logs/DiagnosticReports/Safari_2016-04-27-220110_[redacted].hang

    April 27, 2016, 21:57:37 /Library/Logs/DiagnosticReports/Safari_2016-04-27-215737_[redacted].hang

    April 27, 2016, 19:05:50 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-27-190550_[redacted].crash

    April 27, 2016, 06:57:28 ~/Library/Logs/DiagnosticReports/Airmail 2_2016-04-27-065728_ .crash [deleted]

    / Applications/Airmail 2.app/Contents/MacOS/Airmail 2

    26 April 2016, 19:48:11 /Library/Logs/DiagnosticReports/Safari_2016-04-26-194811_[redacted].hang

    Remove all apps viruses you have

    Symantec, McAfee, Norton...

    CleanMyMac3

  • I have to stop and start the database after the data cache value increases?

    Hello!

    rule of Calc is in error and indicating that the error can be caused by data cache setting small size?

    I increased the value, but it still gives the same error message. I can't stop and start the database, just clicked on apply.

    I need also to check the journal rule and computation of the application to determine the cause of the error.

    But the key is in the question in the header...

    Kind regards

    user637777


    Yes, you do.

  • RMAN backup on the database with data file with corrupted block

    Hi friends,

    I have a problem with a database of oracle 11g XE on windows server 2003, the database is in production, it is open, is operating normally.

    The database has no backup configured before, so I put the database archiving mode and tried to backup using rman utility, but it show me some errors.

    First of all, it showed me:

    ORA-19501: error in reading file... SYSAUX. DBF

    ORA-27070: async read/write failed

    OSD-04016: error queuing an asynchronous i/o request.

    And when I passed the dbv on the SYSAUX file utility. DBF showed the fatal error.

    So, I switched CHKDSK utility on windows to repair the disc of the error. After that, run utility dbv and he passed and showed me the corrupt on SYSAUX blocks. DBF

    Then, came to rman and ran:

    RMAN > validate the logical database checking;

    State of the file marked corrupt blocks examined empty blocks high YVERT

    ---- ------ -------------- ------------ --------------- ----------

    3 0 1111 115840 78859075 FAILED

    File name: C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSAUX. DBF

    Type block for lack of treated blocks blocks

    ---------- -------------- ----------------

    Data 0 0

    Index 0 0

    Other 38 114729

    After that: watching the content of v$ database_block_corruption;

    Show me a lot of lines like this:

    SQL > select * from v$ database_block_corruption;

    FOLDER # BLOCK # BLOCKS CORRUPTION_CHANGE # CORRUPTIO

    ---------- ---------- ---------- ------------------ ---------

    3 4440 1 FRACTURED 0

    3 4439 1 0 ZERO ALL THE

    3 4386 2 FRACTURED 0

    3 4384 1 0 ZERO ALL THE

    3 4334 1 0 ZERO ALL THE

    ...

    33 selected lines.

    Finally I try to rerun rman and he shows me the error:

    ORA-19566: exceeded the limit of 0 blocks corrupt file C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSAUX. DBF

    How can I do backup with rman? Maybe I can by pass the corrupt block?

    I'll be grateful for any help you can provide.


    =)

    It would be better if you try to find the reason of corruption and try to recover the corrupt blocks. A block corrupted in the backup would really not must use. But if you're ready to take backup, you can ask RMAN to ignore corrupt blocks and move forward.

    Use the pseudo-code for the backup

    Run {set maxcorrupte for the database to 10;

    backup tablespace sysaux ;}

    HTH

    Aman...

  • Is it possible to recover a database with the copy of data files (cp), while the database has been opened?

    Hello

    We know we need to do a backup of an oracle database by using the appropriate tool, in most cases the rman. But we have in our society, a person who helps us with the backup of all the databases oracle we have. Thus, in addition to the rman backups, we do a copy (cp) with the open database of all files in oracle database, (without start backup) including of course spfile, controlfile, etc.. My question is: can recover us my database using this copied data files? or are we just wasting disk space on our backup environment?

    Kind regards
    Melo.

    We're doing a copy (cp) with the open database of all files in oracle database, (without start backup) including of course spfile, controlfile, etc..

    As EdStevens said, it's essentially a backup without value. When you copy files from a backup ' hot', there may be inconsistencies in the blocks of the file as transactions actively edit these blocks while the copy is made. Mechanism of Oracle backups hot managed by users is to put the database or tablespace in backup mode, copy the files, and then the end backup mode. Without this mechanism, the chances of being able to restore from this backup are very, very thin.

    My question is: can recover us my database using this copied data files?

    My question is... have you tested recovery? If the recovery has been piloted, then called the answer to this question. Please read the end of this blog post for more information:

    Blog of Peasland before necessary recovery database backups"

    See you soon,.
    Brian

  • Listener (and the database instance) does not start automatically: ORA-12514: TNS:listener does not currently of service requested in connect descriptor

    Hi all... I am a newbie with oracle database.,.

    I have the problem of monitoring:

    I installed Oracle Database 11 g R2 XE on my CentOS 6.5 guest operating system.

    I changed the host name in my CentOS so (where installed oracle 11g R2 XE) after the installation was completed successfully.

    Installation-) before and during the hostname is localhost.

    (-) After the installation, I changed the host name in VMCentOS

    From the moment where I changed the host name, nothing starts automatically. In particular, the listener and the database instance does not start automatically.

    When I start the listener manually and I try to connect to the instance of database with SQLPLUS I get this error:

    ORA-12514: TNS:listener is not currently of service requested in connect descriptor

    I think that the problem is due host name changed because I have to test and debug the object, re-installed a machine virtual operating system CentOS, re-installed oracle database 11 g and I do not have this problem. The database instance and the listener starts automatically!

    Can someone tell me if, maybe, the problem is with the host has changed? ... and why?

    P.S.: After changing the hostname I also modified the listener.ora and the tnsnames.ora by changing the HOST with the correct host name.

    Hello

    It seems that you don't install Oracle Database Express Edition (XE). If you post this question in the wrong forum.

    When you install EA or there is no script that starts the database at startup.

    If you wish, you can create by yourself. For example search for instructions to Google how to create script.

    Kind regards

    Jari

  • Cannot answer your request because the updating of the database

    I created a user in Services shared and then assigned to a group. After that, I went to the workspace in the ahead mode to manage security filters, the user does not appear and when I try to "create" an existing user, an error appears:

    I do not turn any updating in the database and my EAS shows nothing. What could happen? It's Hyperion Planning 11.1.1.3

    Kind regards

    If an update of the planning is certainly not executed then maybe there is still a lock to indicate that an update is running, you can try to run the utility hspunlockapp - unlocking Applications

    See you soon

    John

    http://John-Goodwin.blogspot.com/

Maybe you are looking for