Function to insert special characters

I want procedure or function which can insert set of huge values say1000.. with special characters existing in spreasheet to a table.
for example:
L&T Infotech
Ana's parlour
Procter & Gamble
ETSA Transmission Corporation T/As Electranet SA

And the problem is where?
You don't know how to work with spreadsheets (assuming excel) or Oracle?
OK here is an example
Table is as follows:
SQL> create table mytable (col1 varchar2(100), col2 varchar2(100));
Table created.Excel cell contains following value
Latvia's men & women
You need it to insert in the table
The formula for insert creation is (one example of thousands of course ;)
=CONCATENATE("INSERT INTO mytable (col1, col2) values ('";SUBSTITUTE(C16;"'";"''");"', 'aaa');")As a result you need in sqlplus do following
SET SCAN OFF
and then just call script with your calculated excel column values and for particular above mentioned column and table it would be:
SQL> set scan off
SQL> INSERT INTO mytable (col1, col2) values ('Latvia''s men & women', 'aaa');
1 row created.Gints Plivna
http://www.gplivna.eu

Similar Messages

  • How do you insert special characters with imovie 08?

    How do you insert special characters into a project
    with imovie 08?

    Don't think that would work. Since my "system date" is already set at 2007. I have 2 imports, one has the year as 2048, and the other at 2016!! I don't know where they are getting these dates from, but they are not the system date.
    Were the files imported directly from a camcorder or from files already on your hard drive? In the first case the year may have been taken from the time "stamp" recorded when the footage was shot (which may or may not have been correctly set by the user). On the other hand, files imported from the hard drive seem to be keyed to the date the imported file is written to the "Events" folder which, of course, reflects the current system time/date setting. That's why I said you had to then import (re-import) the files from a hard drive source -- i.e., to ensure the DTG would be re-written.

  • How to insert special characters in pdf comments

    Now, we are ready to go "no paper" workflow, and so mark anything on pdf file, but we cannot insert most of special characters in PDF comments. Same as here, and the xml entity is "&PSgr;", "how to archive it?

    >what the Character Map is?
    You don't know how to use Google?
    Character map is a standard part of Windows for using special
    characters with any program.
    In Windows XP, Start > All Programs > Accessories > System Tools >
    Character Map.
    Aandi Inston

  • How to insert special characters ,?

    Hi, guys
    I want to insert some special characters such as , ,,into Oracle,
    for instant: insert into test (special_no) values (' ');
    but the system can not read and show the characters, and just process the characters as null. Could you please tell how I can do to make the system can read the characters? Maybe should I change the some Oracle environment parameters?
    By the way, I immigrated data and tables from MiniSQL to Oracle. How can I check the all data immigrated are correct? In the Mini SQL there is a command 'realshow' to show all data and tables in the database. Is there a command like this in Oracle?
    Thanks ahead.
    Agurri

    NLS_LANG could help but I am not sure about that. You should be able to get any character in the database, that the database supports. What character set is the database created with ?
    You can also use the numeric value for the char
    insert into x (y) values (chr(13)); or whatever.
    Ronald.
    http://ronr.nl/unix-dba

  • How to insert & # special characters into oracle table?

    I have a text value which contains special characters such as & and #.
    After I pass from one page to another,
    TEST& becomes "TEST&"
    I put " " on the above test, otherwise amp; will be truncated by OTN).
    TEST# becomes TEST (# is truncated).
    Actually the value is saved in table like this: "TEST&"
    How to solve this problem?
    How to insert & into table without &
    Thank you.
    Edited by: user628655 on Jul 27, 2009 9:47 AM
    Edited by: user628655 on Jul 27, 2009 9:49 AM
    Edited by: user628655 on Jul 27, 2009 10:39 AM

    Avoid doing that through a link. If this is a page item then submit the page and redirect to the target page using a branching. On the target page, create a computation to compute the target item using the original page item as the source. If you are talking about a report, use the id to pass through the link and fetch the text column in an on load computation.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • In Pages for iPad is it possible to insert special characters like those for logic and math?

    Hello there,
    Is there a way to digit special characters in Pages for iPad?
    I need to include in my document logical symbols.
    Thank you!

    Thank you Tom Gewecke for that app suggestion!  I've been wanting this for a long time.

  • Oracle and PHP - insert special characters problem

    I have computer with these software:
    Fedora Core 4
    Apache 2.0.54
    PHP 5.0.4
    Oracle 10.2.0
    Firefox (character set: UTF8)
    System environment:
    [oracle@computer /] echo $ORACLE_HOME
    /db/u01/app/oracle/product/10.2.0/db_1
    [oracle@computer /] echo $NLS_LANG
    SLOVENIAN_SLOVENIA.AL32UTF8
    I get this for every user, because I have in /etc/profiles:
    NLS_LANG=SLOVENIAN_SLOVENIA.AL32UTF8; export NLS_LANG;
    ORACLE_HOME=/db/u01/app/oracle/product/10.2.0/db_1; export ORACLE_HOME;
    Oracle NLS parameters:
    SQL> SELECT NLS_LANGUAGE, NLS_TERRITORY, NLS_CHARACTERSET FROM NLS_DATABASE_PARAMETERS;
    SLOVENIAN, SLOVENIA, AL32UTF8
    And similar for NLS_INSTANCE_PARAMETERS and NLS_SESSION_PARAMETERS.
    phpinfo() returns:
    Apache Environment
    Variable     Value
    NLS_LANG      SLOVENIAN_SLOVENIA.AL32UTF8
    In /etc/php.ini I have:
    default_charset = "UTF-8"
    mbstring.internal_encoding = UTF-8
    In /etc/httpd/conf/httpd.conf:
    SetEnv NLS_LANG SLOVENIAN_SLOVENIA.AL32UTF8
    In my PHP script "oracle.php" (file encoding is UTF-8) I have:
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" >
    putenv("NLS_LANG=SLOVENIAN_SLOVENIA.AL32UTF8");
    And then code similar to Example 2 in: http://www.php.net/manual/en/ref.oci8.php
    Problem
    When I am trying with PHP insert character "š" ( http://www.fileformat.info/info/unicode/char/0161/index.htm ) or some other special character into Oracle table and then do SELECT from this table I get value "??" which is wrong.
    There is no problem for example with char "a". There is no problem inserting data with SQLPlus or Toad for Oracle - inserted data is always correct. There is no problem for example with echo("some_special_sharacters"); in PHP. I have no problems inserting data with PHP to MySQL database.
    I have read this, but problem still exists:
    http://www.oracle.com/technology/tech/php/pdf/globalizing_oracle_php_applications.pdf
    Plese help.
    Thanks!

    How do you insert it? How do you select it? Where are you viewing the character? What is in the database after the INSERT?
    (SELECT DUMP(col,1016) FROM tab)
    -- Sergiusz

  • How to insert special characters in the Unix FrameMaker?

    Dear All,
    I want to insert the abbreviation of millisecond (which is quite similar to "us") and ≤ in the Unix FrameMaker.
    Any hints?
    Thanks.

    Hi, Alice:
    Look in the OnlineManuals directory in the FM installation directory for CharacterSets.pdf There's a table of all characters in fonts (pre-OpenType) and the equivalent keystrokes or codes they need. Also look for MultiplePlatforms.pdf which has platform-specific notes.
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices

  • Insert special characters with laptop keyboard

    In Linux Thunderbird is there a keyboard shortcut alternative to insert>Characters and symbols ?
    I have tried various combinations of fn-alt-shift ctrl but none seem to work.

    Assuming English US version, Alt+I followed by Alt+C.
    If you look in the menus (the ones from the full menu bar, not always the ones from the ≡ application button), they show a Ctrl+''x'' for the keyboard shortcut. Also, each menu item has a bar underneath its accessibility key, which can be used along with the Alt key to navigate them without the mouse.

  • Using the Alt key and numeric code from Character Map to insert special characters in Office 2010 programs

    I am used to using the ALT key and specific numbers for characters from the Character Map to place characters in Office programs like Outlook, Word, Excel. I have a new Lenovo T530 Laptop running the Windows 7 Professional Operating System. I have MS Office
    2010 Home and Business. In previous versions of Office, this feature worked first time, every time. On this machine, it is a 'no go' situation. Lenovo tech support says it is a Microsoft issue and Microsoft says it is a Lenovo issue. Either way, I'm having
    difficulty resolving the issue and getting this wonderful featrure working for me. Any suggestions and guidance would really be appreciated. Thank you. 

    Hi,
    Haven't been verified this myself, but since this feature require to use the numeric keypad to input the value, I suspect the cause of the issue is the laptop keyboard.
    To workaround this issue, try enable the numeric keypad from your laptop keyboard, normally, we can enable it by press
    Fn + Num Lock.
    After that, try insert characters again.
    Max Meng
    TechNet Community Support

  • How to insert special characters in DN

    Hi all
    I'm trying to make a CSR for a server using certreq.exe and the subject DN has a comma in it. I have tried "\," , "\2C" and "%2C" in the subject filed of the policy.inf file that I use for making the CSR but whatever I use is exactly showed on the certificate.
    (It is not treated as a special character)
    Also I have the same problem with CAs. When I want to install Certification Authority on Win 2008 R2 and server's DN has a comma, the installation stops and shows an error message about "Invalid DN".
    How can I solve these problems?

    in the INF file under Subject field add another field:
    X500NameFlags = 0x40000000
    for example:
    [NewRequest]
    Subject = "CN=www.something.com; O=Contoso Pharmaceuticals, Ltd; C=US"
    X500NameFlags = 0x40000000
    <other attributes>
    and use semicolon as a RDN attribute separator.
    HTH
    My weblog: http://en-us.sysadmins.lv
    PowerShell PKI Module: http://pspki.codeplex.com
    Windows PKI reference:
    on TechNet wiki

  • How to insert special characters (checkmark) ?

    I am creating a table tent (4.5" x 5.5").  I want to insert "checkmarks" and then change the color.  In other products this is really easy but in Illustrator I just cant figure it out !!
    Please help..  [email address removed by host]

    Use ITC Zapf Dingbats keyboard key 4.  

  • Using Special characters in Insert statement

    Hi All,
    I want to insert special characters in my table. Here is my query
    insert into COM_TAB(TAB_COMMENTS) VALUES('ADAM'S FARM & FARM-GANG APPLE GOOGLE') .Please help.Also tel me is there any method to handle special characters like using ascci values for it

    Put the & and ' as below
    create table com_tab(tab_comments varchar2(128));
    insert into COM_TAB(TAB_COMMENTS) VALUES('ADAM''S FARM ' || '&' || ' FARM-GANG APPLE GOOGLE')
    select * from com_tab
    TAB_COMMENTS                                                                                                                    
    ADAM'S FARM & FARM-GANG APPLE GOOGLE    

  • Understanding how to type special characters

    We're running Frame 7.2p158 on Windows XP and experiencing unexpected results using keyboard sequences to insert special characters.
    1. Out of my group of 7, 2 writers say that Ctrl+q zero does not insert the multiplication sign in the default font. It works for the rest of us. I didn't believe this until I personally experiment with other combinations listed in the help that do not work on my machine.
    2. On the help page entitled Symbols Page for Windows, there is a list of Alt+Ctrl combinations that are supposed to insert Greek letters. None of these work for me. I have tried pressing Ctrol and alt simultaneously then the letter, as I do with the multiplication sign that does work for me. I have tried pressing Ctrl, then Alt then a letter, I have tried pressing all three at the same time. None of these work.
    This makes me think I am missing some simple point, or omitting some step.
    Does anyone out there have any idea what?
    TIA.
    Stan Stansbury

    If you want to do the same, but also including the possibility to use Unicode do this (FM8!!!):
    Hold down the Alt key and hit the + (PLUS) key on the numeric keypad followed by the hex code for the unicode character you want. For letters use the normal keys on the keyboard.
    For example, to get permille, enter
    Alt + PLUS + 2030
    If you are working on a laptop this becomes extremely ackward since the numeric keypad is often 'hidden' with the use of a function key of some sorts.
    keep smiling
    thomas

  • Special characters & numbers in tables....

    Hello...
    I've just started using Pages '08 and I'm having a couple of problems.....
    Firstly.... I can't seem to insert special characters.... when I click Edit > Special Characters... nothing happens.... is there something wrong with my software?
    Secondly.... When I try to insert a value such as 1.00 into a table Pages automatically corrects it to 1, deleting the decimal places.... how can I change this?....
    Any help at all would be great...... Thanks...

    Firstly.... I can't seem to insert special characters.... when I click Edit > Special Characters... nothing happens.... is there something wrong with my software?
    There is a possible fix here:
    http://docs.info.apple.com/article.html?artnum=307354

Maybe you are looking for

  • Document in DMS can not be printed using FM CVAPI_DOC_VIEW

    Hi Experts, We've been using FM CVAPI_DOC_VIEW in the program to get the document in DMS and set value of import parameter 'PF_APPTP' to 3 to make the document to be printed. But after our system upgraded to ECC6.0, the document could not be printed,

  • Some photos not visible in Windows Explorer

    Dear All, I have a problem when using an iPhone 5s with iOS 8.1.1 together with Windows 8. The iPhone connect well, I can browse most of the photos from Windows Explorer, but some newer pictures are simply missing. So I see the majority of photos tak

  • Cut,copy,paste in textarea

    JTextArea has predefined methods for cut,copy and paste. |||ly how do i implement cut,copy &paste in TextArea.

  • RTMT REPORTING NTP EVENTS

    RTMT is porting the following from my Publisher and both Subscribers. At Wed May 28 15:10:11 BST 2014 on node 10.211.7.100; the following SyslogSeverityMatchFound events generated:  SeverityMatch : Critical MatchedEvent : May 28 15:10:04 dbs-cm-donpu

  • Graphic Card Decision?

    I've got an early-mid 2008 8 core Mac Pro 2.8GHz / 6GB of memory. It came with a Radion HD 2600 which isn't enough for FCP X, so a new one is needed. I do a lot of short HD projects. So the questions arise: Is this machine strong enough to do full HD