How can I add a value in a table that contains "and other characters

Dear all
I have a Varchar2 column and I need to insert some values into it.

My value is like that contains "."

Hello: I need "help" (from you); How can I insert this line in a column;
Insert into abc values ('Hello: i need a 'help' (from you) ; How can i insert this line into a column);

Insert into abc values (' Hello: I need "help" (from you);) How can I insert this line in a column ");"
Insert into abc values (Q'[Hello: I need "help" (from you);]) (How can I insert this line in a column]');

Tags: Database

Similar Questions

  • How can I add a program to the start selective msconfig and how to delete a startup item?

    How can I add a program to the start selective msconfig and how to delete a startup item? Once, I knew but forgot.

    Remove items not controlled in MSConfig
    http://www.PCWorld.com/article/255514/remove_unchecked_items_from_msconfig.html

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

  • Please how can I use a value in a table of the adf in an actionListener to a button I created in a popup and thanks

    Please how can I use a value in a table of the adf in an actionListener to a button I created in a popup and thanks

    What is your version of JDev?

    Actually your question is not clear to me, but as I understand, it is you the table in the page and you have popup inside this popup you have the button you need when you click on the button to read the value of the selected table row. In the listener action button, so if you can get the current row of the table and after that you can get any attribute of the line as:

    DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("TableIteratorName"); // from pageDef.
    Row r = iter.getCurrentRow();
    Object value1 = r.getAttribute("attribute1");
    Object value2 = r.getAttribute("attribute2");
    
  • How can I download the drivers for a processor that crashed and does not have access to the internet

    How can I download the drivers for a processor that crashed and does not have access to the internet.  The drivers seem to be the problem.

    How can I download the drivers for a processor that crashed and does not have access to the internet.  The drivers seem to be the problem.

    First of all, please note that you mean a computer, not a cpu.  "CPU" means "Central processing unit". In modern personal computers, the CPU is a relatively small chip, an integrated circuit. It is located on the motherboard inside the computer case. It is not the case itself, nor is it the total computer, which includes the case and what it contains.

    Download drivers on another computer and put them on CD or thumb. Bring them to the computer in question, and then copy them there.

  • How can you add item (object) complex "nested table"?

    Hello I did some reading on * "Associative" * and * "Nested Table" * and I would like to enumerate the collection using the later version (http://www.devshed.com/c/a/Oracle/Database-Interaction-with-PLSQL-Nested-Tables/2/)
    -know list "Nested Table"

    However, encountered problem try to * 'EXTEND' * my nested table (add items to the complex type or OBJECT I defined, namely 'TmpHierarchyMapObjType' below) - detail as follows:

    -NOTE 1: Here's how to create the type object (be well if I just say "CREATE or REPLACE TYPE TmpHierarchyMapObjType AS OBJECT (_TMP_HIERACHICAL. ROWTYPE_)"instead of having to duplicate the column definition.
    CREATE OR REPLACE TYPE TmpHierarchyMapObjType AS OBJECT
    (
    ID numeric (19.0),.
    ParentId numeric (19.0),.
    ChildId numeric (19.0),.
    ...
    TmpUID varchar2 (32),
    ReferencedId numeric (19.0),.
    ...
    );

    -NOTE 2: I can't put 'TmpHierarchyMapObjType' inside the package, but it's not crucial, I guess.
    Types of CREATE or REPLACE PACKAGE
    AS
    TYPE cursorType IS REF CURSOR;
    TYPE TmpHiearchyMapTableType IS TABLE OF THE TmpHierarchyMapObjType; / * Use 'Nested Table' instead of an associative array * /.
    / * TYPE TmpHiearchyMapTableType IS TABLE OF THE TMP_HIERARCHYMAP % ROWTYPE INDEX DIRECTORY. */
    END;

    -NOTE 3: Here is my FUNCTION TABLE that now returns a "Nested Table" as assumed to 'Associative' (with a syntax different enumeration)
    FUNCTION to CREATE or REPLACE spGetParentsTable
    (
    Number to the ObjectId,
    ObjectClassifier varchar2
    )
    RETURN types . TmpHiearchyMapTableType -now a 'Nested Table', not 'voluntary '.
    IS
    Types of TmpHierarchyMap. TmpHiearchyMapTableType;
    ThisTempId varchar2 (32);
    CURSOR spGetParents_cursor IS
    SELECT
    ReferencedId Id,
    ParentId,
    ChildId,
    ...
    OF TMP_HIERARCHYMAP
    WHERE TmpUID = ThisTempId;
    BEGIN
    SELECT sys_guid() IN the double ThisTempId;

    spRecursiveGetParents (ObjectId, ObjectClassifier, ThisTempId);

    -(Commentary) TmpHierarchyMapMAX: = 0;
    FOR oMap in spGetParents_cursor LOOP
    -(Commented out) TmpHierarchyMapMAX: = TmpHierarchyMapMAX + 1;

    -QUESTION: FAILED here! How can I add/elements of complex types?
    TmpHierarchyMap.EXTEND (cast (oMap as TmpHierarchyMapObjType));

    /*
    NOTE: (In the comment) use is not "Associative", now using "nested table" instead.
    TmpHierarchyMap (TmpHierarchyMapMAX). ID: = oMap.Id;
    TmpHierarchyMap (TmpHierarchyMapMAX). ParentId: = oMap.ParentId;
    TmpHierarchyMap (TmpHierarchyMapMAX). ChildId: = oMap.ChildId;
    ...
    */
    END LOOP;

    DELETE FROM TMP_HIERARCHYMAP WHERE TmpUID = ThisTempId;

    RETURN TmpHierarchyMap;

    END spGetParentsTable;

    -Finally, I would like to enumerate the nested table.
    DECLARE
    types of oMappingTable. TmpHiearchyMapTableType;
    BEGIN

    oMappingTable: = spGetParentsTable(2,'ThinkFundamentals.Util.Security.SystemUser');

    -NOTE 4: this is my final goal!
    Select * from table (cast (oMappingtable as types.) TmpHiearchyMapTableType));

    dbms_output.put_line ('done!');
    END;


    REF:
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14261/Collections.htm#LNPLS005
    http://www.DevShed.com/c/a/Oracle/associative-arrays-in-Oracle-PLSQL-introduction/2/
    http://www.DevShed.com/c/a/Oracle/database-interaction-with-PLSQL-nested-tables/2/

    Hello

    Try this,

    TmpHierarchyMap.Extend();
    TmpHierarchyMap(TmpHierarchyMap.Count) := TmpHierarchyMapObjType( oMap.Id
                                                                    , oMap.ParentId
                                                                    , ... );
    

    Kind regards

    Christian Balz

  • How can I find the subset of a table that corresponds to a set of conditions/conditions?

    I have often encountered this problem in LabVIEW, probably the result of my Matlab based thinking on the tables. Suppose I have a 1 d array that consists of a real number between 0 and 2 (for example):

    1.3 0.1 1.9 0.7 1.4 1.5 1.5 0.8 1.3 0.3 1.4 1.4 0.1 0.6 0.1 0.2 1.6 1.6 1.4 0.6 0.1 1.9

    and I want to know the average of the subset of values greater than 0.5 and less than 1.2:

    average ([0.8 0.7 0.6 0.6]) = 0.6750.

    How can I find the subset of the array that satisfies the condition > 0.5 &<1.2>

    For your example (values between 0.5 and 2) If you wish:

    I would do something like this:

    I have generated just a table of 10 random numbers between 0.0 and 2.0

    The following loop sorts the data, using "range and force."
    It then displays the data in the selected range.

    The last step is to take the average

    I have attached the VI if you do not want to use the code.

  • How can I add varchar values

    Hi forum,

    I have to add 3 type varchar2 values and store it in the 4th type varchar2 variable. How can I do?

    p_cc varchar2 (100);
    p_bcc varchar2 (100);
    p_recipients varchar2 (100);

    p_to varchar2 (400);

    p_to needs to store the values of all 3 above (p_cc, p_bcc, p_recipients) varchar2 variable.
    p_to should:=p_cc||p_bcc||p_recipients
    

    Nicolas.

  • How can I add a 'formula' in a table?

    I would like to add an event (or a formula) in a table, but I can't figure out how to do this. Here is the table example again:

    var = personStats { }

    "Jim Bean" : [45, "brown", 70, 175],  

    "Nancy Cardashian" : [36, "black", 68, 122],  

    "Bobby Gentry" : [72, "grey", 71, 165],  

    "Megan Foxx" : [28, "black", 67, 126]  

    }


    I would add this formula event after the (4th entry) weight in each section:

    You forgot the last part:

    Event.Value = personStats [this.getField("Name1").valueAsString] [4] (this);

  • How can I add an image in pdf format that I am editing?

    Hi, I am trying to add a series of images to a document, I'm editing and can seem to figure out how. Can I add a signature, but not a photo.

    Thank you

    Dan

    Hi danc31190517,

    You must use Adobe Acrobat software to add the image to the PDF format.

    Reference: Acrobat Help. Change images or objects in a PDF document

    Hope it will be useful.

    Kind regards

    Ana Maria

  • Hi, I have a PDF form that has multiple check boxes. Some boxes have values (off, yes) that others have just (Yes). How can I get the value of "Off" to all of the other boxes as well. Any help is greatly appreciated.

    Hi, I have a PDF form that has multiple check boxes. Some boxes have values (off, yes) that others have just (Yes). How can I get the 'Off' the value assigned to all the other boxes as well. Any help is greatly appreciated.

    'Off' is the default value of any box when it is not checked. It can not

    be changed.

  • How can I get my page to 100% my facebook page and other web pages are so small, I can't see them...

    In google chrome, you have a key at the top you can click on and scroll down to the percentage, you want your page to be 75% or 100%... My pages are popping up to 25% for children to see or read, how can I change that to where I used my full page... which means that the police on my larger page?

    CTRL + 0 (zero) resets default zoom

    CTRL ++ zoom in

    CTRL + - zoom out

  • How can I move the folders from Windows XP that contains "Live Mail" e-mail files to a different location than C:\Document and Setings\...?

    I just migrated my PC Windows XP "Outlook Express" to "Live Mail" and the migration went really well - the progress of conversion migrated without any human intervention my thousands and thousands of emails, my many Email of OE, my address book files.

    I have however a problem and are not top-of-now a solution for this.

    With Outlook Express, files of Windows XP with my emails were on another Partition of Disk Partition c.  It is important for me, for all the 'application data' (for example, all emails) stored in another partition of the disc the C partition. Because if trouble with newly installed software (for example a beta Version of the software), I can use a backup of my C Partition and restore it without losing the data of the application (for example without losing everything new emails).

    Question 1: With "Live Mail", can I keep my emails to another folder of Windows XP as the standard C:\Document and Settings\... file? If Yes: How can I do this?

    Question 2: Is this whole "C:\Document and Settings\nom of utilisateur\Local settings\application data\Microsoft\Windows Live Mail" folder that I can move to another location?

    Where can I get information on these topics?

    Thank you for an answer.

    My apologies. I was finally able to find a description on how to move the folder containg XP on the Web e-mail "Live Mail".

    In the event a reader is interested in the solution, I included the link to the Web page containing the answer:

    http://www.optimizingpc.com/software/windowslivemail.html

  • How can I add two values together?

    I use the tip action:

    Expression: variable1 = variable1 + '1 '.

    I wish that Captivate to add '1' to the previous value of variable1, not add them.  If variable1 began as 154, after the expression is executed, it must so 1541, not 155.

    Is it possible to add numbers together?

    Thanks for any help!

    Hello

    It seems to work now in HTML5, in fact.

    I use Adobe Captivate 8.

    I have the action advanced (conditional) ' Expression: var1 = var1 + 1 "attached to a click box.  (The condition is simply "1 equals 1".)  I only use conditional statements to ensure that the advanced actions are as flexible as possible.  It was a piece of RodWard. :))) The value of var1 of origin was left white.

    I have a legend of text on the screen with the contents of "$$ var1$".

    It seems to work in HTML5.  The first time I hit the click box, a "1" appears.  Next time, it's '11' and so on.  It does not work as I want only it in swf.  In swf, the first time I hit the click box, a "1" appears. Next time, it is '2 '.

    Either way, I see the same behavior in HTML5 and SWF if I use 1, the number in the expression, or '1', the string.  It seems not to matter.

  • How can I add return values

    Hi, I have the folowing method I need two return values
            public   String[]    getChildRoles() {
                
                   
                return   this.getUserTypes()  + this.getUsernew();
    
              
            }

    Variable index wrong here:

    String t = (String)this.getUserTypesSurvey()[count];
    
  • How can I add ports, proxy, white list so that I can finally install CC

    I have never been more frustrated with a program in my life. Try to install the creative cloud. I got the famous 205 error. I called adobe and they said it was a problem of internet service provider. They told me to try firstly download and install on another network, so I went to the library and still nothing. Adobe then said that they would write me a few ports to give to my Internet service provider (Windstream) and it should work. I called Windstream and they don't do that. I called adobe and they call me yet realized Windstream. I am everything on it.  Could someone explain how to do this email me asking:

    [Hey put

    Use the ports listed for Adobe to be added to the list of the network behind the firewall proxy.

    Please find a list of the URL of the server to the white list: -.

    ccmdls.Adobe.com:443

    IMS - na1.adobelogin.com:443

    na1r.Services.Adobe.com:443

    prod-rel-ffc - ccm.oobesaas.adobe.com:443

    LM.licenses.adobe.com:443

    In addition, the following host/port combinations are necessary to locate and download updates:

    ccmdl.Adobe.com:80

    swupmf.Adobe.com:80

    swupdl.Adobe.com:80

    Thank you and greetings]

    I also tried google & Youtube but here more confused than the original. I want to just install dreamweaver so that I can update my Web site for the love of GOD. It is not that difficult.

    Help

    Shamist32097529 the location of the download logs was referenced in the document, I offered in the #1 message.  If you want direct assistance locating and examining the logs for download so I would recommend contacting the Customer to Contactour support team.

Maybe you are looking for