Insert bullets in a long text column seperated by Enter Sign!

I have a long text column
For example my text looks like
<TEXT>
A
B
C
D
</TEXT?
I want the output as
·A
·B
·C
·D
I tried <?position> its giving me numbers. I want the bullets and not the numbers.
Any idea?
Thanks,
-Ritu

REPLACE(the_field, chr(10), chr(10)||chr(149)||'   ')

Similar Messages

  • SQL Server Long Text column to Oracle CLOB via DB Link

    Does anyone know how to load a SQL Server Long Text column into an Oracle CLOB column using DB Link? When I try to Select from SQL Server table into Oracle table, I receive the error "ORA-00997: illegal use of LONG datatype".
    Thanks,
    Susan

    Hi,
      This is a known restriction involving long columns -
    (1) LONG datatype not supported with use of DBLINK when insert or update involves a select statement
    (2) LONG datatype cannot be used in a WHERE clause, in INSERT into ... SELECT ... FROM
    constructs, and in snapshots.
    The workround is to use a PL/SQL procedure or try the SQLPLUS COPY command.
    If you have access to My Oracle Support then review these notes -
    Cannot Move A Long From non Oracle database Ora-00997: Illegal Use Of Long Datatype (Doc ID 1246594.1)
    How To Workaround Error: Ora-00997: Illegal Use Of Long Datatype (Doc ID 361716.1)
    Regards,
    Mike

  • PHP MaxDB - update on long text column

    Hi!
    I'm getting problem with update statement on long text column via PHP MaxDB.
    As far as there is no example on maxdb_stmt_send_long_data in php documentation, i'm completely stuck with this.
    My table definition:
    CREATE TABLE "ADMIN"."PRESS"
         "ID"  Integer  NOT NULL,
         "R_PUBLICATION"  Varchar (100) ASCII,
         "NUM"  Integer,
         "R_DATE"  Date,
         "R_TITLE"  Varchar (100) ASCII,
         "R_B_TEXT"  Varchar (1000) ASCII,
         "ID_TYPE"  Integer,
         "R_FILENAME"  Varchar (500) ASCII,
         "R_TEXT"  Long ASCII,
         PRIMARY KEY("ID")
    PHP code:
    $stmt = maxdb_prepare($db, "update press set r_publication=?, num=?, r_title=?, r_text=?, r_b_text=?, id_type=?, r_date=?, r_filename=? where id=?");
    maxdb_stmt_bind_param($stmt, 'sisbsissi', $r_publication, $num, $r_title, $r_text, $r_b_text, $id_type, $str_date, $r_filename, $id_f);
    maxdb_stmt_execute($stmt);
    maxdb_stmt_send_long_data ($stmt, 3, $r_text);
    maxdb_stmt_close_long_data($stmt, 3);
    maxdb_stmt_close($stmt);
    After calling the above php-script I get this warning:
    Warning: maxdb_stmt_execute(): Wrong parameter type. Expected: long.
    Has anyone an example on how to update (or insert) LONG string value via the php MaxDB extension?
    Thanks in advance.
    Operating system: CentOS 5.3 Final
    PHP: 5.2.10
    Apache: 1.3.41
    MaxDB: 7.7 Linux 32 Bit
    PHP MaxDb Extension: 7.6.00.38

    We using the procedure to insert and update. Procedure will called to update or insert only one record at a time from XX databse to YY database.
    We are not using SQL * PLUS for this operation.
    Thanks
    Ram

  • How to make single column scrollable in ALV report (for long Text)

    I have a 20 columns which we need to display in ALV grid, including one column for long text. In long text column currently it showing 40 character. I tried to change output length of field catalog but it's not working.
    Can any one help me ....
    Thanks
    Guru
    Message was edited by:
            gurusharan mandal

    hi,
    pls remeove if u give like this in the layout.
    gd_layout-colwidth_optimize = 'X'.
    rgds
    Anver

  • Insert table in long text

    Hi Gurus,
    My client want to insert a table in long text is it possible.
    Is there any development. guide me.
    regards,
    sbabu

    >
    sbabu babu wrote:
    > My client want to insert a table in long text is it possible.
    1. Operating guideline
    1. The Long text line connects with the PPT Long text line.
    2. Pick up the Long text and heard Beep sound, LCD display u201CINSERT TABLEu201D
    3. LCD displays the total amount of TABLEs.
    4. LCD display recipient number when you make a call. (If the TABLEs are not enough to make a call,
    in the right side it will be display last 8 numbers which you dialed).
    5. After recipient side receive the Long text, user press u201CTalku201D key collect the TABLEs or automatically
    collect the TABLE in the Long text, the LCD right side display the account balance, and the left side
    display the need to continue to call in the amount of TABLEs after the count down.
    6. 20 seconds before finish the call, there is a warning sound in the Long text, LCD display u201CInsert
    TABLEu201D. It means if your want continue to talk will insert TABLEs, otherwise will stop automatically.
    7. Pick up the Long text press u201C*u201D u201C#u201D with 8 numbers of passwords, can be checking the total
    amount in the Long text.
    8. Pick up the Long text.
    Sorry, couldn't resist.
    Clemens

  • ORA-22835: buffer too small when trying to save pdf file in LONG RAW column

    Hi,
    I get "ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (real : 125695, maximum : 2000)" when i trying to save a 120k pdf file in an Oracle Long Raw column using dotnet 4.0 and Entity FrameWork.
    Dim db As New OracleEntities
    Try
    Dim myEntity = (From e In db.TEXTE _
    Where e.TEXT_ID = txtTextId.Text _
    Select e).Single
    With myEntity
    If txtTextypeId.Text <> "" Then
    .TEXTYPE_ID = txtTextypeId.Text
    Else
    .TEXTYPE_ID = Nothing
    End If
    .TEXT_NUM = txtTextNum.Text
    .TEXT_NAME = txtTextName.Text
    .TEXT_DATE = dtTextDate.SelectedDate
    If DocAdded Then
    .TEXT_DOC = Document
    ElseIf DocDeleted Then
    .TEXT_DOC = Nothing
    End If
    End With
    db.SaveChanges()
    Document is an array of Byte and TEXT_DOC also (mapped to a long row column).
    is it possible to increase the size of the buffer ? how may i do it ?
    Thx in advance.
    Regards.

    Using a custom UPDATE or INSERT stored procedure for LONG RAW column with
    exceed-limit data may still get the following error.
    "ORA-01460: unimplemented or unreasonable conversion requested".
    One option is to use BLOB instead of LONG RAW in your table and regenerate your
    data model from the table. Then using the default UPDATE or INSERT statement
    (created by EF) should work.
    The following will modify your LONG RAW column to BLOB column.
    Disclaimers:
    1. It's irreversible--you cannot modify BLOB back to LONG RAW.
    2. I have not tried that when there are huge data in LONG RAW column.
    So be careful.
    alter table <your_table_name> modify <your_long_raw_type_column> blob;

  • How to display Long text in alv output

    Hi,
    I have developed an ALV report.It is displaying the output.
    There is another requirment for alv output text field as below
    From the long text fields show only the first 20 characters and afterwards the long text icon. If the icon is clicked open the long text display screen.
    Please give your suggestion how to work on this requirement.
    Thanks in advance

    Hi,
    Create a hotspot for the long text column of ALV.
    When user clicks on the hotspot, handle the event to display long text screen.
    You may refer sample program of hotspot ALV :
    Goto SE38
    Type BCALV*
    Click F4
    search for HOTSPOT or EVENTS & you will get a sample program.
    Best regards,
    Prashant

  • Long Text Printing in SAPSCRIPT

    Hi Experts,
       I got one requirement that i the long text which user will enter that
    has to be displayed on the layout of one window not main.
       The text comes from FB03 application, that has to be displayed.
       I want to know how to do this, i tried to use the hardcoded RSTXT-TDNAME text in my script as define &x& = 'AU1018000010152008001'
    and then include command i used.
       It will be okay for one item, if there are multiple items then it will not be worked.
       so please give me an idea to proceed.
    Regards,
    sivananda P.

    hi,
           it_tline like tline occurs 0 with header line,
           v_info(50),                                                "#EC
        clear it_tline.
        refresh it_tline.
        clear v_info.
        v_name = it_out-ebeln.
        call function 'READ_TEXT'
          exporting
            client                  = sy-mandt
            id                      = 'F05'
            language                = sy-langu
            name                    = v_name
            object                  = 'EKKO'
          tables
            lines                   = it_tline
          exceptions
            id                      = 1
            language                = 2
            name                    = 3
            not_found               = 4
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            others                  = 8.
        if sy-subrc eq 0.
          read table it_tline.                                                         "#EC *
          v_info = it_tline-tdline(50).
        endif.
    if helpful give the points,
    Regards,
    Venkat

  • BPS web enabled exel text subcomponent  using long text

    i used text subcomponent and the long text. 
       If I enter data as such:
              this is a test
              to go to a new line
      the data displays like this
          this is a test to go to a new line
      How can I get it to display as
          this is a test
          to go to  a new line
       Or how to read in a word document that will not show a buch of garbage at the beginning and the end etc...

    i used text subcomponent and the long text. 
       If I enter data as such:
              this is a test
              to go to a new line
      the data displays like this
          this is a test to go to a new line
      How can I get it to display as
          this is a test
          to go to  a new line
       Or how to read in a word document that will not show a buch of garbage at the beginning and the end etc...

  • How to insert long text data in oracle for LONG column type??

    Anybody who can tell me what is best way to store long text (more than 8k) in Oralce table.
    I am using Long datatype for column but it still doenst let me insert longer strings.
    Also I am using ODP.Net.
    Anybody with a good suggestion???
    Thanks in advance

    Hi,
    Are you getting an error? If so, what?
    This works for me..
    Greg
    create table longtab(col1 varchar2(10), col2 long );
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Text;
    public class longwrite
    public static void Main()
    // make a long string
    StringBuilder sb = new StringBuilder();
    for (int i=0;i<55000;i++)
    sb.Append("a");
    sb.Append("Z");
    string indata = sb.ToString();
    Console.WriteLine("string length is {0}",indata .Length);
    // insert into database
    OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl");
    con.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "insert into longtab values(1,:longparam)";
    cmd.Connection = con;
    OracleParameter longparam = new OracleParameter("longparam",OracleDbType.Long,indata .Length);
    longparam.Direction = ParameterDirection.Input;
    longparam.Value = indata ;
    cmd.Parameters.Add(longparam);
    cmd.ExecuteNonQuery();
    Console.WriteLine("insert complete");
    //now retrieve it
    cmd.CommandText = "select rowid,col2 from longtab where col1 = 1";
    OracleDataReader reader = cmd.ExecuteReader();
    reader.Read();
    string outdata = (string)reader.GetOracleString(1);
    Console.WriteLine("string length is {0}",outdata.Length);
    //Console.WriteLine("string is {0}",outdata);
    reader.Close();     
    con.Close();
    con.Close();
    }

  • Is there a way to insert a clickable hyperlink in the long text of an order

    Is there a way to insert a clickable hyperlink in the long text of an order header instead of using the attachment option?
    Thank
    JAM
    Edited by: Jimmy Mendoza on Dec 6, 2010 8:48 PM

    hi jimmy,
    You can very well add hyper links in the long text ,the long text should be in word format,suppose you want to use www.google.com you can type this and when click on it,it will take you to the website.
    Regarding objects sap has not given this facility to add an attachment,for this you can use DMS functionality.

  • JTable column has the long text

    How can I scroll thru the long text that is displayed in a column. There is no editor in it.
    Thanks.

    Make the column editable, set an editor that is capable to scrool text and make it uneditable

  • No other column available (see long text!) error

    Hi,
    I designed a Custom smartform wth 2 differenet pages having diferent functionality.
    when I tried to test the form , it's showing the following Exception.
    FORMATTING_ERROR, and the following the Message.
    No other column available (see long text!).
    Could any one plz guide me.
    Thanks
    Natasha SS.

    Hi,
    Check
    - windows/Template on the smartform are aligned properly within the page size.
    - amount or quantity fields are assigned with CUKY/MEINNS
    check the [link|Formatting Error in smartform] for more help

  • Updating and inserting on Long Raw column

    Hi All,
    My source table contains LONG RAW column in XX databse. I have to fetch the data from this table in YY Databse using DB link and insert into same structured table. The problem is, i can not access the LONG RAW data for some rows which the size exceeding above 32k.
    My requirement is, i have to fetch and insert or update the record(Source and target table structure is same and dtabase is different).
    Please suggest the best way of handle this problem.
    Please let me know if you need more information.
    Thanks
    Ram
    Edited by: ram on Oct 19, 2008 2:11 PM
    Edited by: ram on Oct 19, 2008 2:12 PM

    We using the procedure to insert and update. Procedure will called to update or insert only one record at a time from XX databse to YY database.
    We are not using SQL * PLUS for this operation.
    Thanks
    Ram

  • Inserting into long raw column type

    Hello,
    We tried to insert into a bmp file into the a column of type long raw and got the following error: "invalid value stored in pcbValue". There was no ORA message code assign to this error.
    Willy

    Thanks !
    JDeveloper Team (guest) wrote:
    : Hi,
    : You need to use streams to do this. In the JDBC User's Guide
    and
    : Reference, there is a whole chapter on using streams. Here is
    : some example code from the 8.1.5 JDBC User's Guide:
    : The following Java code snippet writes the data from the
    LESLIE
    : LONG RAW column into a file called
    : leslie.gif:
    : ResultSet rset = stmt.executeQuery ("select GIFDATA from
    : streamexample where
    : NAME='LESLIE'");
    : // get first row
    : if (rset.next())
    : // Get the GIF data as a stream from Oracle to the client
    : InputStream gif_data = rset.getBinaryStream (1);
    : try
    : FileOutputStream file = null;
    : file = new FileOutputStream ("leslie.gif");
    : int chunk;
    : while ((chunk = gif_data.read()) != -1)
    : file.write(chunk);
    : } catch (Exception e) {
    : String err = e.toString();
    : System.out.println(err);
    : } finally {
    : if file != null()
    : file.close();
    : In this example the contents of the GIFDATA column are
    : transferred incrementally in chunk-sized pieces between
    : the database and the client. The InputStream object returned
    by
    : the call to getBinaryStream() reads the data
    : directly from the database connection.
    : Zvonimir Vukovi (guest) wrote:
    : : Zvonimir Vukovic (guest) wrote:
    : : : Hi !
    : : : I have a problem when inserting an image (eg. GIF file)
    : into
    : : : Long Raw column. I am using JDeveloper 1.1, and I need to
    : read
    : : : images from my local hard drive and insert them into
    Oracle
    : : : DBMS. I've done a reverse thing (copying image from Long
    Raw
    : : : column to my HDD). I would be very thankful for a piece of
    : : JDBC
    : : : code which would solve my problem.
    : : : Thanks,
    : : : Zvonimir Vukovi
    : : I've forgotten to say that I need to use na Applet to do
    the
    : : job. I can read the image into AWT Image control, but I
    don't
    : : know how to get it into the Long Raw column
    : : Thanks again.
    : : Z.V.
    null

Maybe you are looking for

  • Problem with pictures in iPhoto '09 on a Mac

    After a recent download of travel pictures numbering over 1,000, every so often a few pictures will split and have normal color on half but the other half is very light.  Sometimes when these thumbnails are opened the color is just fine but I end up

  • Import Error - while trying higher to lower version

    When I try to import dump from - Version 10.2.0.1.0 to Version 10.1.0.2.0 ; i'm getting error as ==> IMP-00058: ORACLE error 6550 encountered ORA-06550: line 1, column 33: PLS-00302: component 'SET_NO_OUTLINES' must be declared ORA-06550: line 1, col

  • PSE 7 & RAW/NEF for us dummies

    While using PSE 7 and my Nikon D40 I had no problem with the program recognizing my RAW files.  When I upgraded to a D90, PSE7 no longer recognized the RAW files. Doing a SEARCH on this forum *technically* showed me the cure. Alas, at times I think i

  • Information about JSP

    Hi everyone, I am trying to collect information about JSP and was wondering if anybody could help me? I am trying to find something about the history, what kind of compiling language JSP is using and how it works, what kind of runtime and how it work

  • How do I create a new Folder for each test report based on Serial number?

    I want to be able to create a new folder for each test report based on serial number. Each time a UUT is tested, I want the report to go to the appropriate folder. What is the best way to do this? Thanks