"missing the SELECT keyword" error during an insert into the temporary table using the blob value

I'm trying to insert into an oracle temp table using select that retrieves data from a blob field but I get the error: "lack the SELECT keyword.

How we store temporary in oracle result when we make this type of operation (extraction of data in fields and try to load them into a separate table on the fly.?)

with cte as)

Select user_id, utl_raw.cast_to_varchar2 (dbms_lob.substr (PREFERENCES)) as USER my_blob

)

create table new_table as

SELECT user_id,EXTRACTvalue(xmltype(e.my_blob),'/preferences/locale') regional settings

E ETC

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

BLOB data - value - which is

<? XML version = "1.0" encoding = "ISO-8859-1" ?>

- < Preferences >

< time zone > America/New_York < / > zone

< displayscheduleinusertimezone > Y < / displayscheduleinusertimezone >

< local > Spanish < /locale >

< DateFormat > JJ/mm/aaaa < / DateFormat >

< timeFormat > hh: mm aaa < / timeFormat >

< longformat > Long_01 < / longformat >

< doubleformat > Double_01 < / doubleformat >

< percentformat > Percentage_01 < / percentformat >

< currencyformat > Currency_01 < / currencyformat >

< / Preferences >

A WITH clause that must immediately precede the SELECT keyword:

SQL > create table t:

2 with the o as (select double dummy)

3 select * West longitude;

Table created.

Tags: Database

Similar Questions

  • Inserting into a temporary table

    Hi all

    I use this code to insert into a temporary table

    INSERT INTO VISIT_TEST

    (NO, VISIT_ID)

    VALUES

    (1,: ALL_ADMITTED_PATIENT.) VISIT_ID);  -guess: ALL_ADMITTED_PATIENT. VISIT_ID is another number.

    COMMIT;

    It inserts nothing,

    but when I try to insert all the values of pl/sql with the same way

    INSERT INTO VISIT_TEST (NO., VISIT_ID) VALUES (2, 4);

    It inserts with success.

    the code for creating the table of tempo is

    CREATE A VISIT_TEST GLOBAL TEMPORARY TABLE (NO NUMBER, NUMBER VISIT_ID) COMMIT PRESERVE ROWS

    Why does not insert on it data?

    PS: the whole issue is that I run a report from a form, and the query of the report is based on the temporary table.

    what I want to know is, when I run the report from inside my form, is considered a new session, and this is why the report cannot see the data in the table of tempo or am I wrong?

    Thank you

    > when I run the report of my form, which constitutes a new session, and this is why the report cannot see the data in the table of tempo, or am I wrong?

    You're not bad. Forms and reports use separate database sessions. Reports can not see TWG data entered via Forms module.

    Concerning

  • What is the syntax for creating a global temporary table using a select query

    HII
    I create a global temporary table using a select query... How to speak of "on commit preserve rows ' who?


    create a table temporary global t1 select * from trn_ordbase on the lines of commit preserve;

    but this is an invalid syntax, then how to talk on commit preserve rows in this? If I don't mention, by default its recital on the validation of deleted rows.

    Please help me on this problem.
    create global temporary table t1 on commit preserve rows
      2  as select * from dual;
    
    Table created.
    
    TUBBY_TUBBZ?
    
  • How to select a rectangle that was inserted into the Clipboard?

    For inserting images batch execution, I am faced with this situation:

    There is a document with a large number of paragraphs containing a file name of image as "034.tif."

    I have a rectangle that has the exact size and style how the images should be placed.

    I copy it to the Clipboard.

    Then I run a script which seeks names of image files and replaces them with the contents of the Clipboard (the desired rectangle).

    If the script ends here, the cursor is placed directly after the just inserted rectangle.

    How the script can select the rectangle on the left of the slider so that the image is inserted into the rectangle instead of after him?

    The script looks like this:

    copy the rectangle desired the Clipboard manually

    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.findWhat = "002.tif";
    app.changeGrepPreferences.changeTo = "~ c";
    myPlace var = app.changeGrep ();

    This is the point where I have to select the rectangle that changeGrep just inserted

    concerned about myPlace [0] ('002.tif', false);

    Your script as written will replace all occurrences of the text in all documents open with the contents of the Clipboard, sort of 'selection', the result could be problematic. However, you can get an array of references to the result like this:

    var myPlaces = app.changeGrep ();

    for (var j = 0; myPlaces.length > j; j ++) {}

    var myRect = myPaces [j] .rectangles [0]; assume that the content of the Clipboard was indeed a rectangle

    var myRect.place ('002.tif', false);

    }

    Even though I'm doubtful that you can simply pass the name of made it to the set command. I myself spend a full file reference.

    The point here is that the changeGrep command returns an array of references to text for the amended text. Each of your texts has changed (even if there is only one) is a character containing an inline or anchored, rectangle that is referenced as the first member of the collection of rectangles by the character.

    Dave

  • inserting data into a temporary table

    I want to do something like session and I decided to use the temporary table. But when I try to insert data that has no past. This is my trigger when-pressed key code:


    declare

    total_col number (18.0);
    varchar (100) of the author.
    title varchar (200);
    price number (18.0);


    Start
    Select BOOK_AUTHOR, BOOK_TITLE, BOOK_PRICE by author, title, price from BOOKS where BOOK_ID =: BOOKS. BOOK_ID;
    insert into orders_tmp (author, title, price) values (author, title, price);
    commit;

    Select total in total_col total_amount where t_id = (select max (t_id) total_amount);
    : SUB_CATEGORY. AMOUNT: = total_col;
    end;

    the first line of the selected data of the block, 2nd insert into the temporary table. 4th line selected the last column in a temporary table and dispalying in etiquette. When the trigger is activated, I have an ORA-01403 error.
    Help, please.

    Edited by: 863470 2011-09-06 06:50

    I decided to use the temporary table

    Can you show how you created your temporary table (ie., show us your DML Table statement)? Without knowing how you have set your temporary table, we can really offer you suggestions. ;)

    declare
    

    total_col number (18.0);
    varchar (100) of the author.
    title varchar (200);
    price number (18.0);
    Start
    Select BOOK_AUTHOR, BOOK_TITLE, BOOK_PRICE by author, title, price from BOOKS where BOOK_ID =: BOOKS. BOOK_ID;
    insert into orders_tmp (author, title, price) values (author, title, price);
    commit;

    Select total in total_col total_amount where t_id = (select max (t_id) total_amount);
    : SUB_CATEGORY. AMOUNT: = total_col;
    end;

    This is more work than it should be. A much simpler and more elegant method is:

    /* Sample When-Button-Pressed trigger */
    BEGIN
       INSERT INTO orders_tmp (author, title, price)
       SELECT BOOK_AUTHOR, BOOK_TITLE, BOOK_PRICE
         FROM BOOKS
        WHERE BOOK_ID = :BOOKS.BOOK_ID;
    
       ... Rest of your code here...
    END;
    

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • records by inserting into one another table

    Hi Masters

    I have to insert records from table to table b, which do not exist in table b. Please, help me in this record.

    create table test1 (eno number (2), ename varchar2 (10));

    Insert into test1 values(1,'abc');
    Insert into test1 values(2,'xyz');
    Insert into test1 values(3,'pqr');
    Insert into test1 values(4,'vara');

    create table test2 (eno number (2), ename varchar2 (10));

    Insert into test2 values(2,'xyz');
    Insert into test2 values(4,'vara');

    I tried like this...

    SQL > get the ap;
    1. INSERT ALL
    2. WHEN r_num = 1
    3 THEN IN VALUES test2 (eno, ename)
    4 OTHER INTO test2 VALUES (null, null)
    5. SELECT eno, ename
    6, ROW_NUMBER () OVER (PARTITION BY eno, ename)
    7 ORDER BY eNAME - or else
    8                             )  AS r_num
    9 * FROM test1
    SQL > /.

    4 lines were created.

    SQL > select * from test2;

    ENO ENAME
    ----- ----------
    2 xyz
    4 vara
    1 abc
    2 xyz
    3 pqr
    4 vara

    6 selected lines.

    the result above is not correct... Please advice.

    Concerning

    Evelyne

    Use MERGE:

    SQL > select * from test1;

    ENO ENAME
    ---------- ----------
    1 abc
    2 xyz
    3 pqr
    4 vara

    SQL > select * from test2;

    ENO ENAME
    ---------- ----------
    2 xyz
    4 vara

    SQL > fusion
    2 in test2
    3 using test1
    4 you (test1.eno = test2.eno and test1.ename = test2.ename)
    5 when not matched
    6. then insert
    7 values(test1.eno,test1.ename)
    8.

    2 lines merged.

    SQL > select * from test2;

    ENO ENAME
    ---------- ----------
    2 xyz
    4 vara
    3 pqr
    1 abc

    SQL >

    SY.

  • Write the blob value in a file

    Hi all


    I'm looking on the correct method of writing a blob value to a file. I know the best way to use an external language. For example, Java or C. But also, I met a number of solutions to do within pl/SQL block. All of them look like this:


    CREATE OR REPLACE PROCEDURE Write_Binary_file
    (
    PC$ Directory IN VARCHAR2
    , PC$ file_name IN VARCHAR2
    , PC$ SQL_Order IN VARCHAR2
    , PB$ Raise IN DEFAULT BOOLEAN FALSE
    )
    -- -------------------------------------------
    -Procedure to empty a BLOB column in a file
    -- -------------------------------------------
    -settings:
    -PC$ Directory: name of an existing directory of Oracle
    -PC$ file_name: name of the file output expected
    -PC$ SQL_Order: SQL command to select the BLOB column
    -PB$ Raise: boolean to indicate if the process
    -would be stopped after an error
    --
    IS
    src_lob BLOB;
    RAW buffer (16384).
    AMT directory: = 16384;
    INTEGER POS: = 1;
    LF$ FicOUT UTL_FILE. TYPE_DE_FICHIER;
    LC$ Msg VARCHAR2 (2000);
    BEGIN

    -get the BLOB column-
    BEGIN
    EXECUTE IMMEDIATE PC$ SQL_Order IN src_lob;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    LC$ Msg: = ' Write_Binary_File(): NO_DATA_FOUND';
    If PB$ increase THEN
    RAISE_APPLICATION_ERROR (-20100, LC$ Msg);
    END IF;
    Dbms_Output.put_line(LC$MSG);
    RETURN;
    END;

    -Open the output file-
    LF$ FicOUT: = UTL_FILE. FOPEN (Directory$ PC, PC$ filename, 'W', 32764);

    -write the file-
    LOOP
    -play songs-
    Dbms_Lob.read (src_lob, amt, pos, buffer);
    -write the songs-
    Utl_File.Put_Raw (LF$ FicOut, buffer);
    POS: = pos + amt;
    END LOOP;
    -Close the file-
    Utl_File.fclose(LF$FicOut);

    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    UTL_FILE.fclose(LF$FicOut);
    WHILE OTHERS THEN
    LC$ Msg: = ' error Write_Binary_File(): ' | TO_CHAR (SQLCODE) | "everything by managing the file (')"
    || PC$ Directory | ') ' || PC$ file_name;
    If PB$ increase THEN
    RAISE_APPLICATION_ERROR (-20100, LC$ Msg);
    END IF;
    Dbms_Output.put_line(LC$MSG);
    END Write_Binary_file;
    /


    But this code doesn't seem to work. The problem is that it always creates a slightly bigger than an initial file. So copy jpg will never be opened with any viewer.

    Can someone explain this problem and give no work around?

    Thank you

    Hello

    If I look at this procedure, I think that you forget to check if the last part, it takes to read is less than 32000. Now you put the always full buffer to the desired quantity. The last part, you only need to read from the BLOB what remains, nothing more. By reading more, get your blob of larger than expected.

    I use the package lie on this page for several years and no complains: http://www.adp-gmbh.ch/blog/2005/november/20.html

    Herald tiomela
    http://htendam.WordPress.com

  • insert into a final table based on a condition

    Hello
    create table table1(invoice_number varchar2(4), covg_date date, employee_number varchar2(5),
     service_option varchar2(2), FEES VARCHAR2(5), AMOUNT NUMBER(9,2));
     
    insert into table1 values('1','01-JUL-2011','11','8','F1,F2',100);
    insert into table1 values('2','01-JUL-2011','12','2','F1,F2',110);
    insert into table1 values('3','01-JUL-2011','13','9','F1,F2',120);
    insert into table1 values('4','01-JUL-2011','14','3','F1,F2',130);
    commit;
    
    create table table2(invoice_number varchar2(4), covg_date date, employee_number varchar2(5), 
    service_option varchar2(2),FEES VARCHAR2(5), AMOUNT NUMBER(9,2));
    
    insert into table2 values('1','01-JUL-2011','11','88','F1,F2',100);
    insert into table2 values('2','01-JUL-2011','12','2','F1,F2',110);
    insert into table2 values('3','01-JUL-2011','13','9','F1,F2',122);
    insert into table2 values('4','01-JUL-2011','14','3','F1',130);
    insert into table2 values('4','01-JUL-2011','15','3','F1',130);
    commit;
    
    create table final_table(insert_type varchar2(1),invoice_number varchar2(4), covg_date date, employee_number varchar2(5), 
    service_option varchar2(2),FEES VARCHAR2(5), AMOUNT NUMBER(9,2));
    We need to insert in final_table based on the differences between table1 and table2. The condition for this is:
    For example: for a given employee number (11) for a covg_date(July-2011) given, if there is at least a difference in any value of the column that is in this case the service_option (8.88)...
    I need to insert record from table1 into final_table with insert_type as 'ELDERS '.
    and insert record of table2 in final_table with insert_type as 'NEW '.

    Same employee number 14, there is a difference between column fees and I should insert as in the example above
    Same employee number 13, there is a difference between the column AMOUNT and I must insert as in the example above.

    For example employee number 15, there is no record in table1 but found in table2 and which will be inserted as it is...

    What my idea was to go through separate employee_number, covg_date in table1 and check every value in table2 to the same disease and insert into final_table...

    But if there is a better option as insertion directly using select clause or a sort of direct insertion without loop...

    Thanks for the help in advance

    Maybe a modified version of something like this:

    INSERT INTO final_table
    ( insert_type
    , invoice_number
    , covg_date
    , employee_number
    , service_option
    , fees
    , amount
    )
    SELECT insert_type
         , invoice_number
         , covg_date
         , employee_number
         , service_option
         , fees
         , amount
    FROM   (
         SELECT invoice_number
              , covg_date
              , employee_number
              , service_option
              , fees
              , amount
              , 'OLD' AS insert_type
         FROM   table1
         MINUS
         SELECT invoice_number
              , covg_date
              , employee_number
              , service_option
              , fees
              , amount
              , 'OLD' AS insert_type
         FROM   table2
         UNION ALL
         SELECT invoice_number
              , covg_date
              , employee_number
              , service_option
              , fees
              , amount
              , 'NEW' AS insert_type
         FROM   table2
         MINUS
         SELECT invoice_number
              , covg_date
              , employee_number
              , service_option
              , fees
              , amount
              , 'NEW' AS insert_type
         FROM   table1
           )
    WHERE  employee_number = :emp_number
    AND    covg_date       = TO_DATE(:date_string,'MM/DD/YYYY')
    ;
    
  • How can I insert a n-dimensional table using Insert table subset?

    I am able to insert a row or a column in the table. But how do I insert a table 2D or 3D in an existing table?

    Kind regards

    Adel SR

    Just it wire in.  Here is a 2D chart inserted into a 3D (at the beginning of the 3D table)...

    BS

  • How to import the XML file into an oracle table using a BPEL process

    Hi friends

    How can I import XML file in the db oracle table using a BPEL process

    (1) I have generated an XML file in my local system with a field
    (2) I created a temporary table in my oracledb with the same field in the XML file
    (3) that I want to import these XML files which is the local host to my db oracle using a BPEL process
    (4) for that what steps should I me fallow please suggest me if there is no document for this?

    Thanks in advance
    AT

    Hi to

    Here you go...

    http://blogs.Oracle.com/ajaysharma/2011/03/using_file_adapter_database_adapter_and_mediator_component_in_soa_11g.html

    I hope that helps!

    Thank you
    AJ

  • ODI - 1228 error when you try to delete a table using the procedure

    Hello

    I get the following error when I run the procedure. The process has two steps.

    Step 1: Drop table (REF_TABLE1 ;) removal
    Step 2: Complete the Table (Insert statements)

    ODI-1228: Load_Ref_Roles_Privileges_List (procedure) of the task fails on ORACLE DEVSCHEMA target connection.
    Caused by: java.sql.SQLSyntaxErrorException: ORA-00911: invalid character

    CODE: delete from REF_TABLE1;

    When I run the same delete statement into a TOAD, it works. Also, if I run it with only step2 it works.

    Please notify. Thanks for your time and your help.

    Hello

    Could you try without the *. * ?

    Only

    delete from REF_TABLE1
    

    Kind regards
    JeromeFr

  • How can I make the JPG images inserted into a visible table cell?

    Dreamweaver CS4 - Macintosh iMac OSX 10.9.5

    DW has been great to work for ten years. I have a very simple website with a few tables and multiple images.

    He did all of a sudden all the images I have insert invisible. The 'elements - Visual Aids Invisible' is checked.

    I need to make changes to the site, but I'm frustrated. I can't add or replace images.

    I don't want to upgrade to creative cloud.

    Help!

    Benniemc wrote:

    Dreamweaver CS4 - Macintosh iMac OSX 10.9.5

    DW works a lot for ten years. I have a very simple website with a few tables and multiple images.

    He suddenly made all the images I have insert invisible. The 'elements - Visual Aids Invisible' is checked.

    It's all good and dandy that Nancy and Jon say that they see your site online will be images. Correct me if I'm wrong but... the real problem is that just inserted images are not visible in Dreamweaver making any visibility on the site online a moot point, right?

    best,

    Shocker

  • Generate the command Id and insert data into two different tables: oracle apex 5.0

    I have three tables. name of the tables: PRODUCT, ORDER_HEADER, ORDER_DETAIL. I took REPORT inter ASSETS in which the VALUES from TABLE product. I need to use the trigger here, there is a TEXT ARTICLE called ORDER ID: it will generate through trigger. so whenever new order placed order id must be unique. There is a button when this button is clicked, the VALUES of REPORT must be inserted in to ORDER_HEADER , ORDER_DETAIL (in fact, I am in confusion is it even possible).

    I tried to create the trigger: not work if


    CREATE OR REPLACE TRIGGER "EMP_TRG1".

    Before Insert on order_header

    for each line

    Start

    If: new. Order_ID is null

    then

    Select lpad (demo_seq.nextval, 8, '0'): new. Order_ID order_header;

    end if;

    end;

    SQL:

    Select

    apex_item. Text(1,p.PRODUCT_ID) PID.

    PN.product_name,

    apex_item. Text(2,p.PRODUCT_QTY) qt.

    apex_item. Text(3,p.unit_price) upward,

    apex_item. Text(4,p.TOTAL_AMOUNT) am

    OMS_SHIP_CART_DETAIL p, pn OMS_PRODUCT

    where p.product_id = pn.product_id

    DA:

    var arr_f01 = [];

    var arr_f02 = [];

    var arr_f03 = [];

    var arr_f04 = [];

    var arr_f05 = [];

    product_id var;

    unit_price var;

    Var Qty;

    var total_1;

    () $("input[name='f01']").each

    function() {}

    product_id = $(this).closest('tr') .children ('td [headers = 'PID']') .text ();

    unit_price = $(this).closest('tr') .children ('td [headers = "Uprice"]') .text ();

    Qty = $(this).closest('tr') .children ('td [headers = "Qty"]') .text ();

    total_1 = $(this). Closest ('tr'). Children ('td [headers = "total"]'). Text();

    arr_f01.push ($(this).) Val());

    arr_f02.push (product_id);

    arr_f03.push (total_1);

    arr_f04.push (unit_price);

    arr_f05.push (Qty);

    }  );

    (apex). Server.Process

    "Insert a command."

    , {f01: arr_f01, f02: arr_f02, f03: arr_f03, f04: arr_f04, f05: arr_f05}

    }

    , {dataType: "text", success: function (pData) {alert ('added product') ;}}

    );

    Ajax callback:

    declare

    l_count number;

    Start

    -insert into OMS_ORDER_HEADER (USER_ID, TOTAL_AMOUNT, batch, ORDER_DATE) values(:P1_USER_ID,:P42_TOTAL,'PENDING',SYSDATE);

    I'm looping 1.apex_application.g_f01.count

    insert into OMS_ORDER_DETAIL (PRODUCT_ID, UNIT_QTY, UNIT_PRICE, TOTAL_AMOUNT)

    values (APEX_APPLICATION. G_F01 (i), APEX_APPLICATION. G_F03 (i), APEX_APPLICATION. G_F04 (i), APEX_APPLICATION. G_F05 (i));

    commit;

    end loop;

    end;

    Hi Dominique,.

    I create a process page away present in your application

    declare
      l_order_id varchar2(8);
    begin
      insert into order_header(ORDER_ID
                            , STATUS
                            , ORDER_DATE)
                      values(lpad(demo_seq.nextval,8,'0')
                            , 'Pending'
                            , sysdate)
      returning ORDER_ID into l_order_id; 
    
      for rec in(select ID
                      , QTY
                      , PRICE
                  from product)
      loop 
    
        Insert Into Order_Detail ( ORDER_ID
                                  , PRODUCT_ID
                                  , QTY
                                  , UNIT_PRICE)
                            Values(l_order_id
                                  , rec.id
                                  , rec.qty
                                  , rec.price); 
    
        commit;
      end loop;
    end;
    

    Please check and let me know.

    Kind regards

    Jitendra

  • Double insert into, how to get the last insert id

    Hi all

    I need to insert some values into 2 tables, and on the second Board, I put the last id inserted in the first table. I actually did more the thing, but it does not work:

    insert into ADDRESS (id, street, neighborhood, zip code, city, idcountry, phonenumber, fax, phone, mail, post number) values (",", ",", ",", "," "," ");
    insert into samplecenter (ID, idaddress, samplecentername) values (", * IDENT_CURRENT ('ADDRESS') *,"GENERAL - CO");

    -What someone could help me.

    Thank you very much.
    Jarod.

    You must use a sequence.

    for example

    create sequence address_seq
    minvalue 1
    maxvalue 1000000000000000
    start with 1
    increment by 1
    nocache;
    
    insert into ADDRESS (id, street, area, zipcode, town, idcountry, phonenumber, faxnumber, gsm, mail, post)
      SELECT
             address_seq.NEXTVAL,'','','', '', '', '', '', '', '', ''
        FROM dual;
    
    insert into samplecenter (ID, idaddress, samplecentername) values ('',address_seq.CURRVAL,'GENERALE - CO');
    
  • inserting data in a table when the record button

    Hi all

    I have a form that displays all fields in a table. It contains an adjustment column that has the value null by default and also an indicator of adjustment which is by default set to NO.

    Now when the form is run the user has the option to add a value in this column adjustment and this value is stored in another table order_adjustment. Entries should be included in the adjustment table only when there is a change in the column setting and for the value that was changed
    create table order_adjustement
    ( 
      adjustment_id number,
      oe_line_id number,
      adjustment_cnt number,
      created_by varchar2(100),
      created_date date,
      modified_by varchar2(100),
      modified_date date
    )
    I created a procedure in my form to insert my adjustment value
    PROCEDURE p_adjustment IS
    BEGIN
      insert into order_adjustement
      ( 
        adjustment_id     ,
        oe_line_id        ,
        adjustment_cnt    ,
        created_by        ,
        created_date      
      ) 
      values 
      (
        order_adjustment_seq.nextval,
        :oe_lines.oe_line_id,
        :oe_lines.adjusted_cnt,
        user,
        sysdate
       );
      
    END;
    I used relaxation during the new item on this field of setting instance but the problem is that his spare no not not the value that I'm passing it the first time but if I change these values, so these values are stored in the table.

    Published by: Kevin CK on August 17, 2010 15:34

    Hello

    Kevin CK wrote:
    Entries should be included in the adjustment table only when there is a change in the column setting and for the value that was changed

    Well, I prefer to use the database, it will be more effective.
    But if you want to use forms then try using the code below in the UPDATE to the block level.

    IF (GET_ITEM_PROPERTY('adjustment_field_name',DATABASE_VALUE) != :adjustment_field_name OR
        (GET_ITEM_PROPERTY('adjustment_field_name',DATABASE_VALUE) IS NULL AND :adjustment_field_name IS NOT NULL))  THEN
         p_adjustment;  -- here procedure which will insert records...
    END IF;
    

    -Clément

Maybe you are looking for

  • ICloud Desktop &amp; personal hotspot download Documents?

    I'm worried that MacOS can use my mobile for up & download iCloud Desktop & Documents when you use personal hotspot. Can anyone confirm it is (not) using personal hotspot for up & downloads?

  • My screen is magnified, so I can't use

    The watch screen is suddenly zoom (x 300) this means I'm not able to do anything. Not even turn off. Help!

  • the magic mouse 2 loses connection

    My magic mouse 2 is loaded (88%) and connected via bluetooth to my macbook pro (late 2011, OS X El Capitan 10.11.4).) Sometimes it loses connection and after a short time reconnects, what should I do for him have always connected, I mean without capr

  • Satellite L305-S5919 - downgrade from Vista to XP

    Hey everybody Faizan my names and my problem is that I want to go down to XP cause I don't like vista at all I know all the steps to downgrade to xp as to change the bios to compatibility, but there is only one problem I just need an insurance to som

  • Windows XP Recycle bin gel to the top

    My XP machine went through a period of constant application freezes. I had to manually stop because all GUI functions has been lost, including start them and taskbar.Most of the fixed problems got system restore. Now my recycle bin is frozen. I can't