Why this statement run in SQLPLUS and TOAD?

Hello
We use Oracle 10.2.0.4.

I'm trying to understand why the following statement CREATE VIEW statement works as a TOAD but not in SQLPLUS. In SQLPLUS, it gives me an error.

Here's the SQL statement:
CREATE OR REPLACE VIEW FTBV_QUOTES_PROD_ALL_V 
AS 
SELECT   opd.deal_id deal_id, os.form_id form_id,
            opd.sales_rep_user_id sales_rep,
            opep.response_version_number response_version_number,
            opep.version_number version_number,
            opep.team team_name,
           
            CASE opep.team
               WHEN 'AS400'
                  THEN 'AS400'
               WHEN 'DEC'
                  THEN 'DEC'
               WHEN 'EBASOL'
                  THEN 'EBA Solutions'
               WHEN 'HP'
                  THEN 'HP'
               WHEN 'MAINFR'
                  THEN 'MainFrame'
               WHEN 'NETWRK'
                  THEN 'Network'
               WHEN 'ORACLE'
                  THEN 'Oracle'
               WHEN 'OTHER'
                  THEN 'OTHER'
               WHEN 'PC'
                  THEN 'NT/PC'
               WHEN 'RS6000'
                  THEN 'IBM'
               WHEN 'SECURI'
                  THEN 'Security'
               WHEN 'STORAG'
                  THEN 'Storage Solutions'
               WHEN 'SUN'
                  THEN 'SUN'
               WHEN 'SUPPOR'
                  THEN 'Audit Software'
               WHEN 'TELECO'
                  THEN 'Telecom'
               ELSE 'Undefined'
            END team_description, 
            DECODE(os.form_id, NULL, 'N', 'Y') booked,
            
            MIN(os.status_date) booked_date,

            od.gross_profit gross_profit,
            opd.deal_source deal_source, opd.oracleappsdeal oracleappsdeal,
            opd.opportunity_class_code opportunity_class_code,
            ac.customer_name customer_name,
            ac.op_customer_name op_customer_name,
            ac.ams_customer_num ams_customer_num, 
            nvl(ac.top_cust,' ') top_cust,
            od.od_number od_number, od.op_customer_id op_customer_id,
            od.deal_type deal_type, opl.quote_form_id quote_form_id,
            opl.quote_lineitem_number quote_lineitem_number,
            opl.op_status op_status,

            opep.submitted_by submitted_by,
            TRUNC (opep.submit_date) submit_date,
            opep.created_by created_by,
            opep.create_date creation_date,
            NVL (ou.user_name, 'undefined user name') created_by_user_name,
            opep.last_edit_by last_edit_by,
            opep.last_edit_date last_edit_date,
            NVL (oc.user_name,
                 'undefined user name'
                ) last_updated_by_user_name
       FROM op_deal opd,
            op_esc_prod opep,
            ams_customer ac,

            op_od od,
            (SELECT   opl.quote_form_id, opl.quote_lineitem_number,
                      opl.op_status, opl.form_id
                 FROM op_od_lineitem opl
             GROUP BY opl.quote_form_id,
                      opl.quote_lineitem_number,
                      opl.op_status,
                      opl.form_id) opl,
            op_user ou,
            op_user oc,
            op_od_status os
      WHERE (   opep.submit_date >= '01-JAN-2005'
             OR     opep.submit_date IS NULL
                AND opep.create_date BETWEEN '01-JAN-05' AND SYSDATE
            )
        AND opd.deal_id = opep.deal_id
        AND ac.op_customer_id = opd.op_customer_id

        AND opl.quote_form_id(+) = opep.form_id
        AND opl.op_status(+) IS NULL
        AND od.form_id(+) = opl.form_id
        AND ou.user_id(+) = opep.created_by
        AND oc.user_id(+) = opep.last_edit_by
        AND os.form_id(+) = od.form_id
        AND NVL (RTRIM (os.status_type(+)), 'N') = 'CNTBK'
        AND opep.team <> 'NBASOL'
   GROUP BY opd.deal_id,
            opd.sales_rep_user_id,
            opep.response_version_number,
            opep.version_number,
            opep.team,
            os.form_id,
            od.gross_profit,
            opd.deal_source,
            opd.oracleappsdeal,
            opd.opportunity_class_code,
            ac.customer_name,
            ac.op_customer_name,
            ac.ams_customer_num,
            ac.top_cust,
            od.od_number,
            od.op_customer_id,
            od.deal_type,
            opl.quote_form_id,
            opl.quote_lineitem_number,
            opl.op_status,
            opep.submitted_by,
            opep.submit_date,
            opep.created_by,
            opep.create_date,
            ou.user_name,
            opep.last_edit_by,
            opep.last_edit_date,
            oc.user_name;
I get the following error messages:
unknown command beginning "CASE opep...." - rest of line ignored.
unknown command beginning "WHEN 'AS40..." - rest of line ignored.
unknown command beginning "THEN 'AS40..." - rest of line ignored.
unknown command beginning "WHEN 'DEC'..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'DEC'..." - rest of line ignored.
unknown command beginning "WHEN 'EBAS..." - rest of line ignored.
unknown command beginning "THEN 'EBA ..." - rest of line ignored.
unknown command beginning "WHEN 'HP'..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'HP'..." - rest of line ignored.
unknown command beginning "WHEN 'MAIN..." - rest of line ignored.
unknown command beginning "THEN 'Main..." - rest of line ignored.
unknown command beginning "WHEN 'NETW..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'Netw..." - rest of line ignored.
unknown command beginning "WHEN 'ORAC..." - rest of line ignored.
unknown command beginning "THEN 'Orac..." - rest of line ignored.
unknown command beginning "WHEN 'OTHE..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'OTHE..." - rest of line ignored.
unknown command beginning "WHEN 'PC'..." - rest of line ignored.
unknown command beginning "THEN 'NT/P..." - rest of line ignored.
unknown command beginning "WHEN 'RS60..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'IBM'..." - rest of line ignored.
unknown command beginning "WHEN 'SECU..." - rest of line ignored.
unknown command beginning "THEN 'Secu..." - rest of line ignored.
unknown command beginning "WHEN 'STOR..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'Stor..." - rest of line ignored.
unknown command beginning "WHEN 'SUN'..." - rest of line ignored.
unknown command beginning "THEN 'SUN'..." - rest of line ignored.
unknown command beginning "WHEN 'SUPP..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "THEN 'Audi..." - rest of line ignored.
unknown command beginning "WHEN 'TELE..." - rest of line ignored.
unknown command beginning "THEN 'Tele..." - rest of line ignored.
unknown command beginning "ELSE 'Unde..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "END team_d..." - rest of line ignored.
unknown command beginning "DECODE(os...." - rest of line ignored.
unknown command beginning "MIN(os.sta..." - rest of line ignored.
unknown command beginning "od.gross_p..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opd.deal_s..." - rest of line ignored.
unknown command beginning "opd.opport..." - rest of line ignored.
unknown command beginning "ac.custome..." - rest of line ignored.
unknown command beginning "ac.op_cust..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "ac.ams_cus..." - rest of line ignored.
unknown command beginning "nvl(ac.top..." - rest of line ignored.
unknown command beginning "od.od_numb..." - rest of line ignored.
unknown command beginning "od.deal_ty..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opl.quote_..." - rest of line ignored.
unknown command beginning "opl.op_sta..." - rest of line ignored.
unknown command beginning "opep.submi..." - rest of line ignored.
unknown command beginning "TRUNC (ope..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opep.creat..." - rest of line ignored.
unknown command beginning "opep.creat..." - rest of line ignored.
unknown command beginning "NVL (ou.us..." - rest of line ignored.
unknown command beginning "opep.last_..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opep.last_..." - rest of line ignored.
unknown command beginning "NVL (oc.us..." - rest of line ignored.
unknown command beginning "'undefined..." - rest of line ignored.
unknown command beginning ") last_upd..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "FROM op_de..." - rest of line ignored.
unknown command beginning "op_esc_pro..." - rest of line ignored.
unknown command beginning "ams_custom..." - rest of line ignored.
unknown command beginning "op_od od,..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "AND opl.qu..." - rest of line ignored.
unknown command beginning "AND opl.op..." - rest of line ignored.
unknown command beginning "AND od.for..." - rest of line ignored.
unknown command beginning "AND ou.use..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "AND oc.use..." - rest of line ignored.
unknown command beginning "AND os.for..." - rest of line ignored.
unknown command beginning "AND NVL (R..." - rest of line ignored.
unknown command beginning "AND opep.t..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "GROUP BY o..." - rest of line ignored.
unknown command beginning "opd.sales_..." - rest of line ignored.
unknown command beginning "opep.respo..." - rest of line ignored.
unknown command beginning "opep.versi..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opep.team,..." - rest of line ignored.
unknown command beginning "os.form_id..." - rest of line ignored.
unknown command beginning "od.gross_p..." - rest of line ignored.
unknown command beginning "opd.deal_s..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opd.oracle..." - rest of line ignored.
unknown command beginning "opd.opport..." - rest of line ignored.
unknown command beginning "ac.custome..." - rest of line ignored.
unknown command beginning "ac.op_cust..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "ac.ams_cus..." - rest of line ignored.
unknown command beginning "ac.top_cus..." - rest of line ignored.
unknown command beginning "od.od_numb..." - rest of line ignored.
unknown command beginning "od.op_cust..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "od.deal_ty..." - rest of line ignored.
unknown command beginning "opl.quote_..." - rest of line ignored.
unknown command beginning "opl.quote_..." - rest of line ignored.
unknown command beginning "opl.op_sta..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "opep.submi..." - rest of line ignored.
unknown command beginning "opep.submi..." - rest of line ignored.
unknown command beginning "opep.creat..." - rest of line ignored.
unknown command beginning "opep.creat..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
unknown command beginning "ou.user_na..." - rest of line ignored.
unknown command beginning "opep.last_..." - rest of line ignored.
unknown command beginning "opep.last_..." - rest of line ignored.
unknown command beginning "oc.user_na..." - rest of line ignored.
For a list of known commands enter HELP
and to leave enter EXIT.
It seems that SQLPLUS does not like the instructions box or any other function that I use in the select statement. Someone at - it ideas?

Hello

Try to remove empty lines. SQL * Plus isn't like them in a single statement (but OK in PL/SQL blocks).

Tags: Database

Similar Questions

  • Why my computer running so slow and why online games lag and freeze.

    Why my computer run so slow and why do games lag and freeze so often-

    Windows Vista 64-bit on the HP Pavilion DV2 laptop IE9

    Product NX926UA #ABA number

    Start the HP Support Assistant software. Click troubleshooting, and then select each of the options available, except the performance. Delete all Temp files and temporary internet browser files will help you.

    Follow the instructions on this tutorial at home to define your default virtual memory paging size. It's certainly worth a performance improvement you will notice. Don't let not Windows controls the size of your virtual memory paging file.

    Fill your online games can be for various reasons. The most likely reason if you use wireless 802. 11 b or G is the connection. If you have a 802.11n wireless router and the wireless in your laptop card is capable of 802.11n bandwidth and then use it without a doubt.

  • can someone tell me why this flv appears in chrome and not ie10

    can someone tell me why this flv appears in chrome and not ie10

    http://barbaracohenmusic.com/help.htm

    replace your div with this code

    http://www.Adobe.com/go/getflash' > '.

    http://www.Adobe.com/images/shared/download_buttons/get_flash_player.gif"alt ="Get Adobe Flash player"/ >

  • How to check if the user is connected to the are of SQLPLUS and TOAD

    Ther is kind of customer that is connected the user findout. (e.g. application SQLPLUS, EM, SQL Developer or frondend connections). I have used V$ SESSIONS, but its gives me no logical result. I want to distinguish between SQLPLUS, Enterprise Manager and frontend application connections. Can someone help me plaese.

    concerning

    Use

    SELECT THE USERNAME, SCHEMANAME, PROGRAM FROM V$ SESSION

    This will give you username, Schemaname, and program name. Hope this is what you need.

  • Does anyone know why when I run Defender and he finds a Trojan horse, and I try to remove it, it begins to make then after some time the computer stops

    original title: Defender

    Does anyone know why when I run the defender and he finds a Trojan horse, and I try to remove it it starts to do then after some time the computer stops and when I restart it Defender always tells me there is a Trojan horse and the same thing happens when I try to remove it?

    Hello

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/MBAM.php

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    If it does not remove the problem and or work correctly in normal mode do work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.
  • Since my windows 7 ultimate update yesterday it now says my activation code is not authentic. I've been running ok for 2 years and it is registered with microsoft - why this

    I installed updates yesterday, now he says that the key is not authentic. When I try to change the key and write that again he said microsoft has blocked this key. The key is installed on the computer, 2 years ago and it is true I have regerstered with microsoft when I had and have updated ok so far. What is going on. I need help please. Windows 7 Ultimate. Build 7601
    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Code of Validation caching online: 0xc004c4a2
    Windows product key: *-* - BXQ2B - WKW9K-R4VR7
    The Windows Product Key hash: = 1MVHW7PyUEi + AU0YtV0ej5g/lBg
    Windows product ID: 00426-069-4033837-86535
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.001
    ID: {D521A2AE-F84E-4212-94FE-9FA14D0CE4F9} (3)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Ultimate
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.120830 - 0333
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 100 authentic
    Microsoft Office Enterprise 2007 - 100 authentic
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x 86) \Mozilla Firefox\firefox.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {D521A2AE-F84E-4212-94FE-9FA14D0CE4F9}1.9.0027.06.1.7601.2.00010100.1.0.001x 64*-*-*-*-R4VR700426-069-4033837-865355S-1-5-21-3623013666-1811554980-2190356969BIOSTAR GroupA880GU3American Megatrends Inc.. 080016 20110125000000.000000 + 00037A13107018400F208090409GMT Standard Time(GMT+00:00)03100100Microsoft Office Enterprise 2007127480B9502DF0D86oYWOW5ayFE3pZ jvTpuXYsY64JE plus89388-707-8722531-6531014

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Ultimate edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: a0cde89c-3304-4157-b61c-c8ad785d1fad
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00426-00172-069-403383-00-2057-7601.0000-3232012
    Installation ID: 002291524502183546500786259274330002408283292093032205
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: R4VR7
    License status: Notification
    Reason for the notification: 0xC004F200 (non-genuine).
    Remaining Windows rearm count: 4
    Trust time: 11/18/2012 10:55:27

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C4A2
    Beyond: 0 x 0000000000000000
    Event timestamp: 11:17:2012 19:32
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: OAAAAAMABAABAAEAAQACAAAAAQABAAEAln0yoXcWeBtl5xAzwuhYGlTyevCEo43v6kVSgGpSQho =

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC1635 APIC 012511
    FACP 012511 FACP1635
    SRAT AMD FAM_F_10
    HPET OEMHPET 012511
    MCFG 012511 OEMMCFG
    LASRYVITRAGE OEMB1635 012511
    SSDT A M I POWERNOW

    your product is blocked
    Windows product ID: 00426-069-4033837-86535

    The ID of the product - 069 - indicates a not for resale MSDN account. If you are not the account holder and you bought it in a box at retail, the box and its contents is counterfeit. Request an immediate refund from the seller

    For more information, see this:

    http://social.Microsoft.com/forums/en-us/genuinewindows7/thread/a2444f34-0AFF-4f29-a8ac-67e28b0c0285

    And this:

    http://social.Microsoft.com/forums/en-us/genuinewindows7/thread/309bb621-92d5-43d6-98c1-2bb51b35607f

    To see how these counterfeits are more, see:

    http://www.YouTube.com/watch?v=hzqNNiOM0cs

    You can buy a legitimate windows from a legitimate retailer.

  • Why the error message is created, and the statement may not run properly?

    Why the error message is created, and the statement may not run properly?
    SQL> select sql_handle, plan_name, creator from dba_sql_plan_baselines where 
    sql_text='select*from hr.jobs where min_salary>10000';
    select sql_handle,plan_name,creator from dba_sql_plan_baselines 
    where sql_text='select*from hr.jobs where min_salary>10000'
                                                                          *
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected - got CLOB

    It is true that it is the problem of syntax. Change the increased as follows, the increased can run successfully:

    SQL> select sql_handle,plan_name,creator from dba_sql_plan_baselines where sql_text
    like 'select*from hr.jobs where min_salary>10000';
    

    Edited by: jetq may 3, 2010 19:26

  • Unable to run email of announcement of Craigslist with Firefox web browser. The link works fine when you use Internet Explorer. Don't know why this problem?

    When I click on send to a Craigslist of announcements of sale, e-mail software does not run. When I used the same craigslist Web page with Internet Explorer, the e-mail program runs without any problem. Not sure why this problem?

    If you change your preference of mail helper in Firefox for 'other use '.... "you are presented with a command prompt to select an application click 'Browse... '. "and browse your computer for the program of choice. Even if you're already shown two e-mail programs, try to re - select the one you want to use via the method go and then try again to open a mailto link.

    If this does not work, open your profile button in folder

         Help > Troubleshooting Information
    

    and the release of Firefox. With Firefox closed, remove the file "mimeTypes.rdf" of your profile folder, and then restart Firefox and Firefox will re - build the helper, file applications and you can try again to send someone from a link.

  • I have the new apple TV, and he had the new user interface.  Friday he returned to the old version of apple TV user interface.  Anyone know why this could have happened

    This is a silly question, but I'm not too tech savvy.  I don't know I have changed something somewhere.  I have the new Apple TV, and he had the new user interface, which means that the appearance of the applications using the applications, example, scroll down to Netflix, Netflix, etc. to research.  This weekend he returned to the UI I've seen on my old Apple TV. Does anyone know why this could have happened and how I me the new interface to return?  I did a reset to the original values Apple TV and it did not work.  The tvOS is 9.1 (13U85).

    Try to understand the issue.

    Do you mean that you have an apple tv4, but he has a home screen display from the older ATV 2/3?  You can attach a screenshot?

    I have never heard of it and don't know how it is possible that they run entirely new software on the ATV4...

  • Why when I run the installer for Windows 8 consumer preview on my computer of Windows XP Home Edition he says: "this platform is not supported"?

    Setup of Windows 8 consumer priview

    Why when I run the installer for Windows 8 consumer preview on my computer of Windows XP Home Edition he says: "this platform is not supported"?

    You can see this message if you downloaded Windows 8 64-bit and XP 32-bit. To start the installation of Windows 8, you will need to restart and boot from the installation of Windows 8 media.

    If you want to keep your current installation of Windows, you can install it on a separate partition and dual boot with the Windows 8 Preview of consumer. To install on a separate partition and dual boot, you must create and boot from the installation media.

    (1) first you will need a free partition on hard drive - if you do not you can shrink a partition and create a new one to install Windows 8 Preview of consumer on.
    To reduce a partition and add a new one that you can use EASEUS Partition Master (free):
    http://www.partition-tool.com/personal.htm
     
     
    (2) to install on a separate disk, you can perform an installation DVD or USB key, then boot from it so you can choose the other partition. To download the ISO file and install media:
    Download Windows 8 consumer Preview ISO:
    http://Windows.Microsoft.com/en-us/Windows-8/ISO
    After you download the ISO file - use the Windows USB/DVD Download tool to install media:
    http://www.microsoftstore.com/store/msstore/HTML/pbPage.Help_Win7_usbdvd_dwnTool
     
     
    (3) installation on a separate partition for dual boot:
    1 make a DVD or USB installation drive - to see the two options above.
    2. start from the DVD or USB install drive and click on install when prompted.
    3. during the installation process, when asked - choose a custom installation.
    4. Select a free partition on the hard disk to install Windows 8 Preview of consumer - this will install Windows 8 on a separate instead of your current Windows partition partition.
    5 continue with the installation.
       
     
     
    First of all please note:
    1 consumer preview Windows 8 is a pre-release and will only work for a limited time - when it expires, you need to remove it.
    2. the overview of consumption is stable and has been tested, but it s not the finished product. Your PC may crash and you may lose important files. You should backup your data and you shouldn't test Windows 8 Preview of consumers on your primary home or business PC.
    3. If you install the preview of consumption on the Windows partition is currently installed, you cannot uninstall the preview of consumption. To return to your previous version of Windows, you will need to reinstall from the recovery or installation media supplied with your PC.
    4. in addition to dual boot, here are a few methods to install Windows 8 Preview of consumers without affecting your current installation of Windows:
    (A) remove your current hard drive and install the Preview of consumers on a spare drive.
    (B) install it on a spare computer.
    (C) install the Preview of consumer in a virtual machine.
     
    For more information - Windows 8 consumer overview FAQ:
    http://Windows.Microsoft.com/en-us/Windows-8/FAQ

  • 0x000000F4 beginning physical memory dump, this is the error message I got when I perform the adaptation of data operation or run heavy programs, and when I play the music of his tempo becomes slower.

    Original title: 0x000000f4 beginning physical memory dump

    STOP: 0x000000f4 (0 x 00000003, 0x89cb3a18, 0x89cb3b8c, 0x805d29b4) beginning physical memory dump

    This is the error message I got when I perform the adaptation of data operation or run heavy programs, and when I play the music of his tempo becomes slower... What do I do? Help, please...

    Hello

    You did changes to the computer before this problem?

    Step 1: Check if the problem persists in the clean boot state.

    From your computer by using a minimal set of drivers and startup programs so that you can determine if a background program is interfering with your game or program. This type of boot is known as a "clean boot".

    Reference:
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:
    1. click on start and then click Run.
    2. type msconfig and click OK.

    The System Configuration Utility dialog box appears.

    3. click on the tab general, click Normal Startup - load all services and device drivers and then click OK.
    4. When prompted, click on restart to restart the computer.

    Step 2: Also, look for error messages in the event viewer. If you find error messages after return the exact error message so that we can help you better.

    Reference:
    Using the event viewer
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/snap_event_viewer.mspx?mfr=true

    Understanding of event viewer
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/event_overview_01.mspx?mfr=true

    Procedure to view and manage event logs in Event Viewer in Windows XP
    http://support.Microsoft.com/kb/308427

  • Whenever I try to download a file, I get a message that the internet explore has encountered a problem and need to close. Can someone explain why this is?

    Whenever I try to download a file, I get a message that the internet explore has encountered a problem and need to close. Can someone explain why this is?

    What Service Pack for XP are you running?  You use Internet Explorer 7 or 8?   If so, you can try this article to see if it solves your problem:

    "How to reset Internet Explorer settings"
      <>http://support.Microsoft.com/kb/923737 >

    HTH,
    JW

  • I turned on my laptop and my security shield means I have viruses and tries to get me to buy security. I already had my own... or AVG. Why this cease to arise? I would like to know how to safely uninstall this. __

    I turned on my laptop and my security shield means I have viruses and tries to get me to buy security. I already had my own... or AVG. Why this cease to arise? I would like to know how to safely uninstall this.

    Hello

    Thugs loading as usual but then programs are supported by the system functions that make the machine
    harder to use - even if you pay or not. Although these are certainly malware that they are not a
    virus - more like a Trojan horse and certainly a nuisance.

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

    These are scams, fake antivirus to force you to pay for it, even if they have no advantage at all.

    If one of them is not correct (or those listed in the same guide) Please give us the
    Web site, to which you are headed and any other relevant information, including exactly the name you
    See about the program.

    Remove my security y Shield (uninstall Guide)<-- read="">
    http://www.bleepingcomputer.com/virus-removal/remove-my-security-shield

    Remove my security wall (uninstall Guide)<-- read="">
    http://www.bleepingcomputer.com/virus-removal/remove-my-security-wall

    Remove my security engine (uninstall Guide)<-- read="">
    http://www.bleepingcomputer.com/virus-removal/remove-my-security-engine

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone. (If Rootkits run UnHackMe)

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

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

    also install Prevx to be sure that it is all gone.

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp
    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software (viruses, Trojans,
    Rootkits, etc.) that has infected your computer despite all the security measures that you have taken (such as
    the anti-virus software, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

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

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    New Vista and Windows 7 version
    http://OneCare.live.com/site/en-us/Center/whatsnew.htm

    Original version
    http://OneCare.live.com/site/en-us/default.htm

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

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

    Also do to the General corruption of cleaning.

    For Vista:

    Try these to erase corruption and missing/damaged file system repair or replacement.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Then, run checkdisk - schedule it to run at next boot, then apply OK your way out, then restart.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

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

    For Windows 7:

    Try these to erase corruption and missing/damaged file system repair or replacement.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    Then run checkdisk (chkdsk).

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

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

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • All files generated by a coil in sqlplus receive ownership of oracle: dba instead of the user of the BONE started sqlplus and run the script. There's a file with users owners of BONES of the coil.

    All files generated by a coil in sqlplus receive ownership of oracle: dba instead of the user of the BONE started sqlplus and run the script. There's a file with users owners of BONES of the coil.

    Script launched in until OS user 'A' on the 'A' server which launches sqlplus, then connects to a remote database through a service of tnsnames.ora as another user of the database and the results of this script are spoulées on the server "A".

    The file queued on the old server is written with rw-rw-r: read write user, group read the writing, reading and possession header that is the user of the OS. The file queued on the new server is written to rw-r-r user: reading writing, reading group, public reading and ownership oracle: dba.

    "" The user then has no privileges to modify the file and continue the process of transmitting the file, editing and deleting the file for the next set of commands. This allows us to keep the possibility to migrate to the new server we are unable to process orders.

    $ORACLE_HOME/bin/sqlplus - s user/password@prd1 @./script/CustomScript/R12_OM_UFPC-oracle.sql

    Background: old server running 4.8, Oracle 10.2.0.4 OEL

    New server running OEL 6.5, Oracle 11.2.0.4

    Tested so far:

    File and update umask to 0002 instead of 0022 is now generated as rw-r-r. However, the property is still oracle: dba.

    Update of ownershipt of $ORACLE_HOME/bin/oracle.exe of oracle: oracle (edi added the user to the oracle group) and chmod 6751 oracle.exe. This created several problems where crucial scripts, that is to say of sqlplus failed to run.

    Added! chmod 755 output.file.name - OS user 'A' is not allowed to change to mod.

    Added! command cp MV output file and that generated the file as a user of the operating system: oracle. It is a potential work around in case of emergency, but the developer would have to rewrite the countless scripts.

    Any ideas?

    I have reproduced the behavior of the old server and am able to spool a file via sqlplus under OS user. No changes have been made on the remote database server. All the changes have been on the new server hosting a small 11.2.0.4 database on a server running OEL 6.5 32 - bit OS.

    (1) removed the sticky bit $ORACLE_HOME/bin/sqlplus using chmod u-s, g-s, o - s suggestion of Billy ~ Verreynne

    (2) modified the main group for the 'oracle' user match the user operating system applications, while maintaining membership in the groups 'oracle' and 'dba '.

    -We are dealing with here EDI processes, so the Group was called edi.

    (3) modified property of the files tnsnames.ora and listener.ora for oracle: edi

    (4) restart the receiver

    (5) disconnect / reconnect

    Script runs as expected, the output file contains the correct ownership and permissions.

    Thank you all for taking a look and offering options.

    -Josh

  • Why this update needs suddenly an index partitioned locally to run fast?

    Dear,

    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    AMT for Solaris: release 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production

    I would like to understand the following situation.

    I have a partitioned table defined as range
    part_tab (id, dat, b, c, d, e, f, g, h, i)
    This table is partitioned on dat range and has a primary key on (b, id, dat) covered by a unique index of the tree b (b, id, dat). The PK column order is not the same as in the definition of the table!
    This table is filled every day by a night of employment (140,000 new records inserted every day) and also updated (800,000 updated records) as follows

    for x in (select id, dat, b, c, d, e, f, g, h, i
    distant_tab say - simple heap table having a PK (id, dat, b) and accessible through a dblink
    where dis.dat between trunc (sysdate-7) and trunc (sysdate - 1).
    )
    loop
    Update part_tab loc
    set
    Loc.c = dis.c
    loc.d = dis.d,
    loc.e = dis.e,
    loc.f = dis.f,
    loc.g = dis.g,
    loc.h = dis.h,
    loc.i = dis.i,
    where
    Loc.b = dis.b
    and loc.id = dis.id
    and loc.dat = dis.dat
    end loop;

    commit;

    This update took 40 minutes to finish in PRODUCTION for more than 3 months.

    Last week the distant_tab has been purged and went from 12.000.000 records to 1,000,000 records.
    But the update is still almost a fixed number of records to be updated (800,000 records). Statistics on a remote table has also been updated and the updated runtime remains almost the same (40 minutes).

    Unfortunately, one day, this update started taking 3 hours to complete. So it has been for 3 days until we have created a unique partitioned index local (dat, id, b) on part_tab which
    did the update runing on less than 10 minutes.

    Unique consistency, that I can do with this suddenly high time update is that it starts happening immediately in the distant aftermath of the table
    distant_tab has been shrinked (offline) to set the high-water line. Maybe it has nothing to do with this 3 hours run time but it is worth mentioning.

    So my question is:

    Why this update, which took 40 minutes for more than 3 months, it must now have an index partitioned locally rather than the index b-tree in 10 minutes, otherwise it will take 3 hours?

Maybe you are looking for