Insert the problem with the statement

case 1:

declare
Start
Insert into t4 values (1);
commit;
Insert into t4 values ('test');
commit;
end;

invalid value 1 of 1 line inserted with no identifier;

case 2:

declare
Start
Insert into t4 values (1);
commit;
Insert into t4 valuess ('test');
commit;
end;

any line not inserted value 1 with invalid identifier;

question is why difference between over case

Hello

Jhon says:

Thnaks for the previous comment.

Update Q4 set c1 = c1 * 2;   Why this statement fail while we and rename c32 column c1-exceute immediate statement

If, at the time of compilation, the single column of the table is c3, the UPDATE statement will not compile.  So really, you must change the name of column in PL/SQL, then use EXECUTE IMMEDIATE to do the UPDATE.

This is an example of why create or modify tables in PL/SQL is a bad idea.

Tags: Database

Similar Questions

  • Insert the statement so that a line taking more than 6 minutes.

    When I tried to insert just one line in a table... it's take more than 6 minutes. No idea why its causing so much time for just insertion of a line.

    Please advice...


    Kind regards
    Yasser.

    YasserRACDBA wrote:
    Charles,

    Yes you are right. Optimizer is set to rule that it is the version of Oracle 8i.

    Problem has been solved... rinse us just sharing pool and insert the statement was finished within 1 second.

    Still confused that how its related to the hot flushes of shared pool... May be due to bad hit ratio.

    Flushing the shared pool causes the instructions shared/updates cached so far in the shared pool to get hard analysis/optimized again. Explanation so the most obvious would be that for some reason, the implementation plan have been changed to the statement you're talking about, although the plan should be quite deterministic, because you're on 8i (no bind variable peeking questions) and using the optimizer basic RULE.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • Insert the statement Question

    I'm trying to insert a set of values in a table where one of the values necessary for inclusion is identical to the auto-generated primary key. I am not currently insertion of the value for the primary key because it is generated automatically. Given that I'm not insert the value of the primary key, is anyway to set another value inserted on the same primary key value?

    For example:

    insert into ent_config.device (created_dt, created_tz, created_by_seq, modified_dt, modified_tz, modified_by_seq, enterprise_seq, clinicals_organization_seq, facility_id, dept_id, hostname, tty_id, process_num, device_name, device_status, device_type, loc_type, netbios_id, db_name) values (sysdate, 'IS', '106303', sysdate, 'IS', '106303', '5001', '5035', '9', '19', 'phslnx020', 'P12320', ' 2099', 'PC', 'ON_LINE' "cv220") (, 'NUR', * '2736' *, 'ALL');

    The primary key for this table is called device_seq which is generated automatically and must be unique which as you can see from the above insert statement is inserted, and the netbios_id must be set to the same value when inserting.

    No idea how I could go to do this?

    Hello

    Welcome to the forum!

    When you say that device_seq is 'auto generated', do you mean that there is a trigger that provides this value? (I assume you are using a sequence, but it probably does not matter in this issue). See if you can change the trigger. If netbios_id is always the same as device_seq when you INSERT (but can be changed by updates later), then it is very easy. Otherwise, you may need to designate some specail value (as - 9E9) which replaces the trigger with the same value that it used to device_seq.

    Change the trigger is the only good way I can think of that. If you can't touch the existing trigger, you might be able to add a new trigger, but it would be more complicated and less effective.

  • Insert the statement do not using the MultiSelect values correctly

    I have a set of boxes MultiSelect displayed with in a cfloop. I named the MultiSelect boxes "MultiSelect #ID # with #ID #

    the value of KP for each record retrieved. I do this to make sure that each MultiSelect box has a unique name so that when I

    Insert data by using a query of < cfloop > names of are not in conflict. Here's the HTML for the selectbox.

    < select name = "" MultiSelect #ID # ' several size = "3" > (query #ID 'getNonRoleItemDetails) "
    < cfloop query = "getMultiitems" >
    < option value = "#AddInfoID #" > #Name # < / option > (these two values are taken from the "getMultiItems" query
    < / cfloop >

    Here's the query insert I use on the action page that uses this data.



    < cfloopquery getNonRoleItemDetails >

    < cfquery = name "Datasource =' #application.dbname # of the Insert_Multi_Records" >

    INSERT INTO tblItemDetailUpdates (ItemID, ItemDetailsListID, ItemDetailValue, ActionItemID)

    VALUES (#getNonRoleItemDetails.ItemID #, #getNonRoleItemDetails.ID #, ' #form ["MultiSelect" & ID] #', #ArrayOfIds [Counter] #)

    < / cfquery >
    < / cfloop >



    The problem I have here is that the query works correctly, but it is the insertion of the ID MultiSelect values selected (104, 105,

    (106), rather than the real names of these values (IOC, AP, AR... etc).


    I looked at the source code and each MultiSelect box is named correctly and uniquely. Insert inserts the correct ID

    values, but not the names.

    Sigh too bad I am a fool. Well at least I thought about it.

  • problem with loop statement

    Hello

    I'm new in plsql, so I need your help. I am rewriting the existing plpgsql function plsql function, but I have an error on line 15: PLS-00103: encountered the symbol "LOOP" when expecting one of the following values:

    What is the problem with the LOOP statement?

    FUNCTION to CREATE or REPLACE dothework (service_name text string_value)

    RETURNS the text AS

    BEGIN

    DECLARE

    result text;

    varying (31) of tempId character;

    tempFieldId bigint;

    text of tempStringValue;

    tempCount bigint;

    BEGIN

    result = ";

    FOR IN tempId

    SELECT ce.id FROM mfc.card_element this

    WHERE the ce.name AS service_name

    LOOP

    tempCount = 0;

    SELECT INTO tempFieldId mfc.card_field CF field_id

    WHERE cf.field_name = 'NPAname ';

    SELECT INTO tempCount count (*) FROM mfc.card_element_field_value cefv

    WHERE the cefv.card_element_id AS a tempId AND field_id = tempFieldId;

    IF tempCount = 1 THEN

    UPDATE mfc.card_element_field_value

    SET field_string_value = string_value

    WHERE the card_element_id AS a tempId AND field_id = tempFieldId;

    result: = result | tempId | 'UPDATE - YES,';

    ELSIF tempCount = 0 THEN

    INSERT INTO mfc.card_element_field_value (id, field_date_value, field_integer_value, field_string_value, card_element_id, field_id)

    VALUES (HIBERNATE_SEQUENCE.nextval,

    NULL,

    NULL,

    string_value,

    tempId,

    tempFieldId);

    result: = result | tempId | "INSERT - YES, ';

    ON THE OTHER

    result: = result | tempId | "tempCount,";

    END IF;

    -END IF;

    END LOOP;

    RETURN result;

    END;

    END;

    I did the same refatoring I program you unit and put comments to help to understand.

    Let me know if it help you

    FUNCTION to CREATE or REPLACE dothework (service_name in VARCHAR2

    string_value IN VARCHAR2) RETURN VARCHAR2 AS

    -Not necessary to define the new block here BEGIN-

    -SAYS - you only need the instruction stated in this case if you

    -believe that he can raise one exceptional and you want to manage block outsider

    --

    -You must set the buffer of varchar2

    -32767 is the largest amount

    RESULT VARCHAR2 (32767).

    --

    -You can dock this type for the column type, you will receive the data

    tempfieldid card_field.field_id%TYPE;

    -tempstringvalue VARCHAR2; -you do not use this variable

    tempcount NUMBER;

    BEGIN

    -You don't need to initialize with NULL, in this case. PLSQL has done already for you

    -THE RESULT: = ";

    --

    -It seems to me that this request can be outside of the loop

    -Once the table is not the change and the predicate doenst change is

    SELECT field_id

    IN tempfieldid

    Card_field FC

    WHERE cf.field_name = 'NPAname ';

    --

    FOR tempid IN (SELECT ce.id

    OF card_element this

    WHERE the ce.name AS service_name) LOOP

    -It is not necessary to initialize this variable to zero

    -tempcount: = 0;

    --

    --

    SELECT COUNT (*)

    IN tempcount

    OF card_element_field_value cefv

    WHERE the cefv.card_element_id AS a tempid

    AND field_id = tempfieldid;

    --

    IF tempcount = 1 THEN

    UPDATE card_element_field_value

    SET field_string_value = string_value

    WHERE the card_element_id AS a tempid

    AND field_id = tempfieldid;

    RESULT: = RESULT | tempid | 'UPDATE - YES,';

    ELSIF tempcount = 0 THEN

    INSERT INTO card_element_field_value

    (id

    field_date_value

    field_integer_value

    field_string_value

    card_element_id

    field_id)

    VALUES

    (hibernate_sequence.nextval

    NULL

    NULL

    string_value

    tempid

    tempfieldid);

    RESULT: = RESULT | tempid | "INSERT - YES, ';

    ON THE OTHER

    -I remove the tempCount on the "because I think you want to see the number of records

    -you do business with

    RESULT: = RESULT | tempid | ' ' || tempCount | ', ';

    END IF;

    END LOOP;

    RETURN RESULT;

    -END;

    END;

    Best regards

  • Problem with diagram State Toolkit 1.0 - LV 8.2 upgrade to 2014

    I'm in transition a large amount of code from Labview 8.2 to 2014, and I'm having a problem with state diagrams have been added using the state diagram Toolkit V1.0.

    The figure below shows the question, Labview knows the loop and its components are associated with a state diagram, but it option to change the schema, "change the state diagram," is not available.  In Labview 8.2, which I am currently running on older machines, I would simply select "Change the state diagram" and another window of each State and arrows between States appears, allowing the mounting of the diagram.

    I think I have to install the state diagram Toolkit V1.0 software, but it is no longer available on the Web site of NOR.  There are new States transitions module I installed, but it is significantly different from the old Toolbox and does not support.  Any recommendations?

    Thank you very much
    Phil

    Good news:

    (1) SDE still works with SP1 LV2014.

    (2) I have the installer and I'm ready to send it to you. Please send me a private message with your email address.

    Be sure to support this idea.

  • Problem with button state

    Hello! I want to create a button with text. The State of the button should be the title of the text and the pointed State will be a paragraph with a rectangle in the background and the title disappears.

    I converted the title as button and I leave the paragraph text and draw the rectangle.

    My problem is when my mouse went hover title, nothing happened and when I went to move the paragraph box and rectangle, they seemed.

    Cannot choose the hover box? Can I create additional layers for rectangle and paragraph?

    The first time I try to create this button, he had run, but when I replace a bad shot.

    I'm working on the professional Flash CS6 and I use AS2. For example, I don't use THAT on my button, there is only 1 text converted to (title) button, 1 shape (rectangle) and 1 text (button).

    Fight with a button make me sick, if nursing Flash can cure my illness there will be great

    Good bye

    Tom

    If the invisible things in hover is the cause the invisible substance appears then looks that you have placed such things (text and background) under Hit of the button.  The image clicked sets where the button interaction can occur.   Make sure that you place only stationary flight controls in the frame over and no one else.

  • Problem with CASE statements

    Hi all

    I have a calculation in a report of Discoverer Desktop with 29 instructions BOX and still 2 case statements more to add. The problem is that my report freezes and fails to run due to the excessive number of case statements. I need to put the 31 statemnts cases in the report, how do I do this? Is there another way to do it without causing the report to freeze?

    Below is part of my instructions box just to show you what I'm doing:

    CASE WHEN Ex = 'MM' AND THEN of OTHER NULL result (', ')
    CASES WHERE Ex = "PP" AND result IN (40,35,30,25) THEN NULL OTHERWISE
    CASE WHEN Ex = he's ' AND result IN (' a ',' B', 'C', d ') THEN NULL OTHERWISE
    -CASE WHEN Ex = 'IO' AND THEN of OTHER NULL result ('Distinction', 'Merit')
    -CASE WHEN Ex IN ('ZZ', 'WW', 'SS', 'KK') AND ('PASS', 'P') THEN to ANOTHER NULL result...

    The last statement should be BOX WHEN... THEN NULL OTHERWISE 1 END END END END...

    Help, please. Thank you.

    Hello
    You have reached the limit of characters in a calculation.

    Try to set into a single statement as follows:

    CASE WHEN Ex = 'MM' AND THEN of OTHER NULL result (', ')
    WHEN Ex = "PP" AND as a result (40,35,30,25) THEN NULL OTHERWISE
    WHEN Ex = he's ' AND result IN (' a ',' B', 'C', d ') THEN NULL OTHERWISE
    WHEN Ex = 'IO' AND THEN of OTHER NULL result ('Distinction', 'Merit')
    WHEN Ex IN ('ZZ', 'WW', 'SS', 'KK') AND ('PASS', 'P') THEN to ANOTHER NULL result...

    The last statement should be BOX WHEN... THEN NULL OTHERWISE 1 END

    Another option is to combine all the statements of NULL in a series of gold options like this:

    BOX WHEN
    (Ex = 'MM' AND the result in (', am')) OR
    (Ex = "PP" AND result IN (40,35,30,25)) OR
    (Ex = he's ' AND translated BY (' a ',' B', 'C', ')) OR
    (Ex = 'IO' AND as a result ('Distinction', "according to merit")) OR
    (Ex IN ("ZZ", "WW", "SS", "KK") AND result IN ('PASS', 'P')) THEN ANOTHER NULL...

    Best wishes
    Michael

  • problem with if statement

    I have problem with this code haven. It shows error illigical use of the else statement. I checked the syntax is at but I don't where is my problem

    I have a drop drop list box. If the user selects objects in textfields txt_contract1 & txt_contract2 of named values has the new change.iam of java script. is it possible to programmetically edit from vb.net. IAM familiar with it.

    DataRoot. Transmittal_pdf. DropDownList1::click - (JavaScript, client)

    If

    (xfa.event.newText == 'Strategic') { }

    XFA. Form.DataRoot._Transmittal_pdf.

    DataRoot._Transmittal_pdf. Table5.row2.txt_contract1. Value

    = "Blueprint of strategic roads."

    DataRoot._Transmittal_pdf. Table5.row2.txt_contract2. Value

    = "These immediate plans."

    }

    on the other

    {

    DataRoot._Transmittal_pdf. Table5.row2.txt_contract1. Value

    = "Held consultation projects;

    DataRoot._Transmittal_pdf. Table5.row2.txt_contract2. Value

    = "";

    }

    Hi Prasad,

    'V' should be in the rawValue capital 'V' instead of small "v". So, it should be rather than rawvalue rawValue.

    Thank you

    Sidonie.

  • Problem with hetting stats in a report

    Hi - I have the following script that works fine, until I try to get the maximum and average statistics for each vmnic.  The stats are not as I expect to-figures in all the vmnic are basically the same.  If anyone can help? Thank you

    $ESXHostTmp = @)

    write-host ">" $esxImpl

    # #data extraction

    $esx = $esxImpl | Get-View

    $ReportRow = "" | Select-Object Teddy, VSwitch, speed, Duplex, State, MAC, vmNICStatus, NICAvReceived, NICAvValueReceived, NICMaxReceived, NICMinReceived, NICAvTransmitted, NICMaxTransmitted, NICMinTransmitted

    {foreach ($pnic to $esx.Config.Network.Pnic)}

    $vSw = $esxImpl | Get-VirtualSwitch | where {$_.} {NIC-contains $pNic.Device}

    $pg = $esxImpl | Get-VirtualPortGroup | where {$_.} {VirtualSwitchName - eq $vSw.Name}

    $order = ($esx.Config.Network.Vswitch |) where {$_.} ({Name - eq $vSw.Name}). Spec.Policy.NicTeaming.NicOrder

    $row = "" | Select the bears, VSwitch, speed, Duplex, State, MAC, vmNICStatus, NICAvReceived, NICAvValueReceived, NICMaxReceived, NICMinReceived, NICAvTransmitted, NICMaxTransmitted, NICMinTransmitted

    $row.pNic = $pnic. Device

    $row.vSwitch = $vSw.Name

    $row. Speed = $pnic. LinkSpeed.SpeedMb

    $row. Duplex = $pnic. LinkSpeed.Duplex

    $row. MAC = $pnic. Mac

    $row. Status = & {if($pnic.) (LinkSpeed-ne $null) {'up'} else {'down'}}

    $row.vmNICStatus = & {if($order.) ActiveNic-contains $pnic. Device) {'active'} elseif($order.) StandByNic-contains $pnic. {Device) {"standby"} else {"unused"}}

    $row. NICAvReceived = (: round($Receivedvalue.average,2))

    $Row.NICMaxReceived = (: round($Receivedvalue.maximum,2))

    $Row.NICAvTransmitted = (: round($Transmittedvalue.average,2))

    $Row.NICMaxTransmitted = (: round($Transmittedvalue.maximum,2))

    ############

    1. his stats #.

    ############

    $Receivedvalue = $esximpl | Get-stat - stat "net.received.average" - start (get-date). AddDays(-7)-Finish (Get-Date) - maxsamples 10000 | measure-object - average - maximum - minimum-value of the property

    $Transmittedvalue = $esximpl | Get-stat - stat "net.transmitted.average" - start (get-date). AddDays(-7)-Finish (Get-Date) - maxsamples 10000 | measure-object - average - maximum - minimum-value of the property

    $ESXHostTmp += $Row

    $report = $report + $row

    }

    Config #Host

    $ESXHostTmp | Tri-objet Teddy bear | ConvertTo-Html-property Teddy, VSwitch, speed, Duplex, State, MAC, vmNICStatus, NICAvReceived, NICMaxReceived | Out-file - add $htmlHOSTNics

    }

    I moved the ConvertTo-Html line on the inside of the loop of the host, while it works.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Insert the statement with &amp; in the chain

    Hello

    When you use the insert in varchar2 column having below value, it's the slightest mistake out.
    But, if I remove & symbol... It's inclusion.
    suggestions to insert any string

    "Networking - Cisco SMARTnet-6600 | Security & Switch Service Cont-6620 | Not used-0000"

    Thank you

    use

    SET DEFINE OFF

    before the insert statement.

    Concerning
    Arun

  • Select problem with a statement in the stored procedure oracle

    Hi guys,.

    I am new to oracle. I have a simple sql stored procedure that needs to be converted to oracle. The procedure is,

    CREATE PROCEDURE my_procedure
    Char (4) @my_var = null
    AS

    Select * from my_table where my_variable = @my_var

    I converted this SP as oracle and the convert SP is,

    create or replace
    My_procedure PROCEDURE
    (
    v_my_var in CHAR DEFAULT NULL
    )
    AS

    BEGIN

    SELECT * FROM my_table WHERE my_variable = v_my_var;

    END;

    But the SP above returns an error (Error (13.3): PLS-00428: an INTO clause in the following SELECT statement) when compiling.

    So I used the slider to get the results and send back them. Updated the SP is,

    create or replace
    My_procedure PROCEDURE
    (
    v_my_var in CHAR NULL by DEFAULT,
    cv_1 ON SYS_REFCURSOR
    )
    AS

    BEGIN

    OPEN cv_1 to SELECT * FROM my_table WHERE my_variable = v_my_var;

    END;

    Now, the SP is compiled successfully and return the result set correctly. My doubt is,
    What is the right way to solve the problem that I mentioned above? Is there another way to get the select query result without using a cursor?

    Please advice. Thank you for your help in advance.

    RAM

    Depends on where you are calling from SP.
    I assume you are using a windows client, as you referred to SQL Server.
    The .NET Oracle provider, allowing return of pl/sql types and as you return only all columns in a single line, you could change your procedure to something like this:

    create or replace procedure my_procedure(v_my_var in  char default null
                                            ,cv_1     OUT my_Table%rowtype) as
    
      rt my_table%rowtype;
    begin
    
      SELECT *
      into   rt
      FROM my_table
      WHERE my_var = v_my_var;
    
      cv_1 := rt;
    
    END my_Procedure;
    /
    
  • What is the problem with that statement?

    on exitFrame me
    case, the text of the Member "meter."
    "05": relaxation
    '10': relaxation
    '15': relaxation
    '20': relaxation
    '25': relaxation
    cases of termination
    go part
    end

    the trigger
    Open 'C:\b.exe '.
    end

    I can make it work like an if statement but not as a case statement that I prefer?

    Thank you!

  • Insert the statement with the subquery to insert several lines

    Hi friends,

    Please find below mentioned query and error. Also suggest me to go forward.

    SQL > INSERT INTO FM_TRAN_DOC_NO (TDOC_COMP_CODE,

    2 TDOC_TRAN_CODE,

    TDOC_ACNT_YEAR 3,.

    TDOC_CUR_NO 4,.

    TDOC_MAX_NO 5,.

    TDOC_CAL_YEAR 6,.

    TDOC_PERIOD 7,.

    TDOC_DIVN_CODE 8,.

    TDOC_DEPT_CODE 9,.

    TDOC_CR_UID 10,

    TDOC_CR_DT 11,

    TDOC_UPD_UID 12,

    13 TDOC_UPD_DT)

    14 SELECT '001',

    15 (SELECT DISTINCT FM_TRAN_DOC_NO TDOC_TRAN_CODE

    16               '6',

    17               '0',

    18 '9999',

    19 NULL,

    20 NULL,

    21 NULL,

    22 NULL,

    23 "AGT,"

    24 TO_DATE (SYSDATE),

    25 NULL,

    26 TO_DATE (SYSDATE) FROM DUAL;

    (SELECT DISTINCT FM_TRAN_DOC_NO TDOC_TRAN_CODE),

    *

    ERROR on line 15:

    ORA-01427: einreihig subquery returns multiple rows

    +Untested.

    When values except 'TDOC_TRAN_CODE' are hardcoded, there is no need to select double.

    Something like that?

    INSERT INTO FM_TRAN_DOC_NO)

    TDOC_COMP_CODE,

    TDOC_TRAN_CODE,

    TDOC_ACNT_YEAR,

    TDOC_CUR_NO,

    TDOC_MAX_NO,

    TDOC_CAL_YEAR,

    TDOC_PERIOD,

    TDOC_DIVN_CODE,

    TDOC_DEPT_CODE,

    TDOC_CR_UID,

    TDOC_CR_DT,

    TDOC_UPD_UID,

    TDOC_UPD_DT

    )

    SELECT DISTINCT

    '001',

    TDOC_TRAN_CODE,

    « 6 »,

    '0',

    "9999",

    NULL,

    NULL,

    NULL,

    NULL,

    "AGT,"

    TO_DATE (SYSDATE),

    NULL,

    TO_DATE (SYSDATE)

    OF FM_TRAN_DOC_NO;

  • What is the problem with this statement

    < cfset oldisnam1 eq ' #left ("#trim (oldisnam1) #", ("#len (" #trim (oldisnam1) #")-notediff #") #) ">

    regarding;

    < cfset noteLength = "#len (noteline) #" >
    < cfset spacer = "" >
    < cfif noteLength lt 65 >
    < cfset noteDiff = 65 - noteLength >
    < cfloop index = "daLoop" from = "1" to = "#noteDiff #" >
    < cfset spacer spacer = & "' >" "
    < / cfloop >
    < cfset noteline2 = #DateFormat (Now (), 'yyyy-mm-dd') # & "" COURSE: "& #trim (oldisnam1) # &" "& #trim (oldcscity) # &" "& #trim (oldissta2) # & #spacer # &" "& #trim (iscmp2) # >"
    < cfelse >
    < cfset noteDiff = noteLength - 65 >
    < cfset oldisnam1 eq ' #left ("#trim (oldisnam1) #", ("#len (" #trim (oldisnam1) #")-notediff #") #) ">
    < cfset noteline2 = #DateFormat (Now (), 'yyyy-mm-dd') # & "" COURSE: "& #trim (oldisnam1) # &" "& #trim (oldcscity) # &" "& #trim (oldissta2) # & #spacer # &" "& #trim (iscmp2) # >"
    < / cfif >

    It's what worked;

    I really made a mess, I don't?

    Thanks for making me think.

  • Insert the statement of the doDML

    Hello experts!

    I am of the substitution of the doDML of the object of the entity Impl and I want to run a simple sql insert statement.
    How can I do this and validate these changes?

    Thank you very much!

    When you post call doDML method will be called automatically.
    You can write the Insert here and you can call commit to manage Bean or AMImpl

    Manage in bean

    FacesContext fc = FacesContext.getCurrentInstance();
    BindingContainer opBindings = (BindingContainer)fc.getApplication().evaluateExpressionGet(fc, "#{bindings}", BindingContainer.class);
    OperationBinding operationBinding = opBindings.getOperationBinding("Commit");
    operationBinding.execute();
    

    In AMImpl

    this.getDBTransaction().commit();
    

    These documents may also be useful for you.
    EO - OPERATION DODML
    http://andrejusb.blogspot.com/2008/02/complex-insert-in-easy-way.html

Maybe you are looking for

  • FaceTime via TD MBP/iMac

    I use my old iMac via TD for my MBP, but I can't quite figure out how to change my FaceTime camera and a microphone to use the one on the iMac and not the MBP. It uses by default the MBP which is not good at all because it under a desk. It is even po

  • My iMac has been slain on the wheel that turns for hours after I entered my Apple ID in the Setup

    My iMac has been slain on the wheel for hours after I entered my Apple ID in the installation program do I do?

  • localhost "mozilla firefox can't establish a connection to the server localhost:33331.

    I get this error message when I try to open the site near word on localhost "mozilla firefox can't establish a connection to the server localhost:33331. I installed wordpress on my computer using Microsoft Web Platform Installer. Downloaded wordpress

  • Printer suddenly blanks. Help! URGENT

    My Canon MG5420 is printing blanks of wifi and when I use the USB port. I checked ink levels and even run devuce interview on ink.  Everything is fine, but everything I print everything produces a vertical blue line and NO type/etc...

  • LaserJet 1300 paper jam

    LaserJet 3100 C3946A USBF021323 Mfg October 13, 1999 Use of the history/primary A fed not location of several page for years. Only OK food for my purposes. Is not used for fax or printing from the computer. Use main scan and copy. Malfunction To repl