How to use escape characters in expdp

Hi All,
Am exporting the dump by using expdp as follows
expdp XXXXX/YYYYYY schemas=XXXXX INCLUDE=TABLE:\"LIKE('EXT_%')\" directory=DUMPDIR1 dumpfile=XXXXX_18-Dec-2012.dmp logfile=exp_XXXXX_18-2012.log
rocessing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/TRIGGER
Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . exported "XXXXX"."EXT_COLLATERAL"                     556.5 KB    2543 rows
. . exported "XXXXX"."EXT_CUSTOMER"                       184.1 KB    1210 rows
. . exported "XXXXX"."EXT_ACCOUNT"                        142.8 KB    1116 rows
. . exported "XXXXX"."EXT_CUSTOMER_IDENTIFICATION"        126.6 KB    1210 rows
. . exported "XXXXX"."EXT_LN_ACCOUNT"                     111.3 KB     965 rows
. . exported "XXXXX"."EXT_LN_ACCT_DISBRSMNT_EVENT"        102.5 KB     965 rows
. . exported "XXXXX"."EXT_PERSON"                         108.7 KB    1210 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT_SUMMARY"             77.92 KB     151 rows
. . exported "XXXXX"."EXT_LN_ACCOUNT_DISBURSEMENT"        100.4 KB     965 rows
. . exported "XXXXX"."EXTENSION_BASIS_TYPE_REF"           5.296 KB       3 rows
. . exported "XXXXX"."EXTERNAL_BANK"                      11.23 KB      40 rows
. . exported "XXXXX"."EXTERNAL_BANK$AUD"                  12.73 KB      42 rows
. . exported "XXXXX"."EXTRACTION_SVCE_REF"                5.289 KB       2 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT"                     24.64 KB     151 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT_INTEREST"            37.72 KB     151 rows
. . exported "XXXXX"."EXTERNAL_SMS"                           0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_BLOCK"                      0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE"                     0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE_SUMMARY"             0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE_TIER"                0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHEQUE_BOOK_ORDER"          0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHEQUE_INVENTORY"           0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_RELATIONSHIP"               0 KB       0 rowsit export fine.. But my requirement is needs to export tables start with EXT_%
here expdp exports all table starting with EXT% how to specifies escape character in export option.
excepted result
. . exported "XXXXX"."EXT_COLLATERAL"                     556.5 KB    2543 rows
. . exported "XXXXX"."EXT_CUSTOMER"                       184.1 KB    1210 rows
. . exported "XXXXX"."EXT_ACCOUNT"                        142.8 KB    1116 rows
. . exported "XXXXX"."EXT_CUSTOMER_IDENTIFICATION"        126.6 KB    1210 rows
. . exported "XXXXX"."EXT_LN_ACCOUNT"                     111.3 KB     965 rows
. . exported "XXXXX"."EXT_LN_ACCT_DISBRSMNT_EVENT"        102.5 KB     965 rows
. . exported "XXXXX"."EXT_PERSON"                         108.7 KB    1210 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT_SUMMARY"             77.92 KB     151 rows
. . exported "XXXXX"."EXT_LN_ACCOUNT_DISBURSEMENT"        100.4 KB     965 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT"                     24.64 KB     151 rows
. . exported "XXXXX"."EXT_DP_ACCOUNT_INTEREST"            37.72 KB     151 rows
. . exported "XXXXX"."EXT_ACCOUNT_BLOCK"                      0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE"                     0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE_SUMMARY"             0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHARGE_TIER"                0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHEQUE_BOOK_ORDER"          0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_CHEQUE_INVENTORY"           0 KB       0 rows
. . exported "XXXXX"."EXT_ACCOUNT_RELATIONSHIP"               0 KB       0 rowsThanks
Sami.

expdp XXXXX/YYYYYY schemas=XXXXX INCLUDE=TABLE:\"LIKE('EXT\\_%')\" directory=DUMPDIR1 dumpfile=XXXXX_18-Dec-2012.dmp logfile=exp_XXXXX_18-2012.log
or
expdp XXXXX/YYYYYY schemas=XXXXX INCLUDE=TABLE:\"LIKE('EXT\_%')\" directory=DUMPDIR1 dumpfile=XXXXX_18-Dec-2012.dmp logfile=exp_XXXXX_18-2012.log its not working which gives the following error
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 0 KB
ORA-39165: Schema XXXXX was not found.
ORA-39168: Object path TABLE was not found.
ORA-31655: no data or metadata objects selected for job
Job "XXXXX"."SYS_EXPORT_SCHEMA_01" completed with 3 error(s) at 10:30:13when i gives EXCLUDE option then it working but it also exporting all tables
expdp XXXXX/YYYYYY  schemas=XXXXX EXCLUDE=TABLE:\"LIKE('EXT\\_%')\" directory=DUMPDIR1 dumpfile=XXXXX_19-Dec-2012.dmp logfile=exp_XXXXX_19-Dec-2012.log
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 133.1 MB
Processing object type SCHEMA_EXPORT/USER
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/COMMENT
Processing object type SCHEMA_EXPORT/PACKAGE/PACKAGE_SPECany idea or suggestion?
Thanks
Sami

Similar Messages

  • How to use escape character in update statement.

    Hi All,
    I'm trying to update table using following sql update statement, but everytime it's asking me for the input due to the '&' value in below sql.
    UPDATE xyz_xyz
       SET NAME = 'ABC & PQR'
    WHERE ID = (SELECT ID
                   FROM abc_abc
                  WHERE NAME = 'C & PQR');Please let me know how to use escape character syntax or let me know if there is any alternative solution.
    Thanks,
    Vishwas

    Hi,
    By default, & marks a substitution variable name.
    If you're not using substitution variables in that statement (or, if this is in PL/SQL, in that entire package or procedure) then the easiest thing to do is just diable substitution variables; then & will be a normal character:
    SELECT  DEFINE  OFF
    UPDATE xyz_xyz
       SET NAME = 'ABC & PQR'
    WHERE ID = (SELECT ID
                   FROM abc_abc
                  WHERE NAME = 'C & PQR');
    SET  DEFINE  ONIf you can't do that, then & is always taken literally if it comes right before a single-quote, so you could say:
    UPDATE xyz_xyz
       SET NAME = 'ABC &' || ' PQR'
    WHERE ID = (SELECT ID
                   FROM abc_abc
                  WHERE NAME = 'C &' || ' PQR');There is a SQL*Plus "SET ESCAPE" command, too, but if you use it, you have to worry about whether the escape character is to be taken literally or not.
    SET   ESCAPE  \Yet another alternative is to make some other character, such as ~, mark the substitution variables:
    SET  DEFINE  ~Read all about them in the SQL*Plus manual.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b31189/ch2.htm#sthref103

  • How can I use escaped-characters in an option

    I have the following code that is used to retrieve city-names including parent-child relations from a database and place them in an array:
    <%@ page contentType="application/x-javascript" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
    <sql:setDataSource dataSource="jdbc/KADOS" var="Raak" scope="session" />
    <sql:query var="bewaringSQL" dataSource="${Raak}">
    SELECT bewaringcode, vestigingsplaats FROM BEWARING order by vestigingsplaats
    </sql:query>
    bewaringen = new Array(
    <c:forEach items="${bewaringSQL.rows}" var="plaats" varStatus="s" >
    new Array( "<c:out value="${plaats.BEWARINGCODE}" />",
    "<c:out value="${plaats.VESTIGINGSPLAATS}" />" )
    <c:if test="${not s.last}">,</c:if>
    </c:forEach>
    i=0;
    <c:forEach items="${bewaringSQL.rows}" var="plaats" varStatus="s" >
    <sql:query var="bewaringGemSQL" dataSource="${Raak}" sql="SELECT KADGEMCODE, KGMNAAM FROM KADGEMEENTE where BEWARINGCODE=? order by KGMNAAM">
    <sql:param value="${plaats.BEWARINGCODE}" />
    </sql:query>
    tmp = new Array(
    <c:forEach items="${bewaringGemSQL.rows}" var="gem" varStatus="s" >
    new Array( "<c:out value="${gem.KGMNAAM}" />",
    "<c:out value="${gem.KADGEMCODE}" />" )
    <c:if test="${not s.last}">,</c:if>
    </c:forEach>
    bewaringen[2] = tmp;
    i = i+1;
    </c:forEach>
    function bewaringenList(selectCtrl, itemArray) {
    for (i=0; i<itemArray.length; i++) {
    selectCtrl.options[i] = new Option(itemArray[i][1]);
    selectCtrl.options[i].value = itemArray[i][0];
    function setList(selectCtrl, itemArray) {
    for (i=selectCtrl.options.length; i>=0; i--) {
    selectCtrl.options[i] = null;
    for (i=0; i<itemArray.length; i++) {
    optie = filter(itemArray[i][0]);
    selectCtrl.options[i] = new Option(optie);
    selectCtrl.options[i].value = itemArray[i][1];
    function filter( invoer) {
    retour = invoer;
    retour = retour.replace("'", "\'");
    return retour;
    The function 'bewaringenList' populates a <SELECT> with parent-names and
    "setList(document.VraagForm.gemSelect, bewaringen[this.selectedIndex][2]);" populates the depending <SELECT> with child-names.
    Some names contain single quotes (like "&#039;t Zandt") and are displayd in the select-box as "&#039t Zandt".
    I expected that the quotes could be replaced by escape-characters by 'filter(invoer)' but this does not work.
    Is there a generic way to show these characters?
    Ben

    I don't understand why but this filter solved the problem:
    function filter( invoer) {
    retour = invoer;
    retour = retour.replace("&#039;", "'");
    return retour;

  • How not to escape characters in 3.1

    Hello
    In Apex 2.0 i used to store html text in an item; if i used it in an html region or in a label it worked fine, i mean it showed the formatted text.
    In Apex 3.0, it shows the full html text as if i used escape special characters but i want it html formatted; is that a migration error? even if a create a new app happens the same thing. How can we solve it?
    Thanks

    The item type needs to be (a) an application item, or (b) Display as Text (escape special characters, does not save state) with its condition set to Never.
    Scott

  • How to use urdu characters in forms6i

    I use forms6i as frontend and oracle 8i and 9i as database.I want to input URDU characters in text item using form6i and want to store the same in databse.Here majority of bussiness and oranizational data is stored in files using software inpage which maps keyborad keys to URDU font.Any one can help me how to use the same in text item using form6i bulider.

    Whenever I have trouble with fonts from a different language I set the type in Illustrator, convert the type to outlines, then import the AI file into AE as a composition.
    Sometimes setting the type in Photoshop has also helped.
    If you must have the fonts so you can use text animators try looking for OT fonts that fill the bill. Open OpenType fonts are a lot less problematic than Post Script or True Type fonts. Take a look HERE for some sources. I haven't checked out any of the fonts listed but it looks promising.
    dear the main problem is keyboard in INPAGE2004 we use standard Phonetic keyboard and link which you gave it download the fonts and i copied it brings the urdu but not correct urdu suppose if we make a sentance (my name is chimi) in english it is ok and when i type it for urdu it brings different urdu wording not the correct wording, it type different type of urdu characters which makes no sense. It is possbile if i found a font which give me the correct wording as Phonetic keyboard give me in AE,

  • How to use special characters in regular expression

    HI all, I am new to regular expression.
    Can any one please tell me the regular expression for characters which are used in regular expression like " [({. tetc.Is there any particular expression to prefix before using these characters                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Expression:
    < td .*? bgcolor = \" ( [^ \" ] +) \" \\s* .*? > ( .+? ) </td>
    It will search for expression starting with <td ,
    .*? means any characters zero or more than one,
    then it will find bgcolor = , then literal \"... \(any char) is that specific char
    [ ^ \" ] any character but not literal \",this means there has to be something between ".... " if empty then wont match ,+ is 1 or more times
    Then again literal \ " , after that \\s* means zero or more num of spaces,
    then again , .*? means any characters zero or more than one,
    it will search for literal > , again any chars . * ?
    Finally </td> will be searched.....!!
    So all expressions having this particular structure will be
    matched.
    Output :
    <td align="left" valign="top" bgcolor="ffffff" width="177">bla bla bla</td>

  • Using escape characters(\n,\t and etc) in JSP

    Hi,
    I need to format a jsp UI with out using any html code or CSS.
    My end clients are having text based email utilities which does not support html or CSS. So I am generating a email template based on JSP by using session data for dynamic values.
    Even though I am using escape char in the jsp it is not printing in new line. All information coming as a string in one shot with out formatting.
    Code:
    <%
    footerContent.append("\r\nYou can visit the Store at");
    footerContent.append(Global.getString("Store.Common.NewStoreURL"));
    footerContent.append("If you have questions please email us at:"+Store.getContactInfo(GlobalConstants.EMAILADDDRESS)+"\r");
    footerContent.append("or phone at "+Store.getContactInfo(GlobalConstants.PHONE));
    %>
    <%=footerContent.toString()%>

    Tried using with given code still its showing like below. Also I want to use "tab" for cart items display.
    Code fragment:
    <%@ page contentType="text/plain; charset=UTF-8" language="java"%>
    some initialization code
    <%="***********************************************************"%>
    <%
    StringWriter footer = new StringWriter();
    PrintWriter pw = new PrintWriter(footer);
    pw.println();
    pw.print("You can visit the Store at " +store.getURL());
    pw.println("If you have questions please email us at:"+store.getContactInfo());
    pw.println("or phone Order Administration at "+store.getContactInfo());
    pw.print("Monday through Friday"+store.getOfficeHours());
    pw.println("Thank you for visiting"+Global.getStoreString());
    String result = footer.getBuffer().toString();
    %>
    <%=result.toString()%>
    <%="***********************************************************"%>
    Out put :
    "*********************************************************** You can visit the Store at @STORE_URL@If you have questions please email us at:[email protected] or phone Order Administration at 111 Monday through FridayMonday - Friday: 6:00 AM to 5:00 PM Pacific TimeThank you for visiting@COMPANY_URL@ ***********************************************************

  • How to replace escape characters in a string ?

    Hi All,
    In my application I came across a problem where I want to replace a substring (contains escape characters also) with another string. The below shown code will replicate my problem :
    public class StringSearchAndReplace {
      public static void main(String args[])   {
        String stmt = " \\pntext\\bullet\\tab The question as to ";
        String newStmt = stmt.replaceAll("\\bullet\\tab",  "B");
        System.out.println("BEFORE: " + stmt + "\n");
        System.out.println("AFTER: " + newStmt);
    }Here I want to replace "\\bullet\\tab" with "B". I am unable to move further. Please help/suggest me in this regard.
    Its urgent.
    Thanks in advance.

    Satyaprasad_Mylavarapu wrote:
    Hi All,
    In my application I came across a problem where I want to replace a substring (contains escape characters also) with another string. The below shown code will replicate my problem :
    public class StringSearchAndReplace {
    public static void main(String args[])   {
    String stmt = " \\pntext\\bullet\\tab The question as to ";
    String newStmt = stmt.replaceAll("\\bullet\\tab",  "B");
    System.out.println("BEFORE: " + stmt + "\n");
    System.out.println("AFTER: " + newStmt);
    }Here I want to replace "\\bullet\\tab" with "B". I am unable to move further. Please help/suggest me in this regard.
    Its urgent.
    Thanks in advance.If the String you're trying to replace contains a slash you need four slashes (double it for java, then again because String.replaceAll takes a regular expression)
    So I think what you're looking for is:
    String newStmt = stmt.replaceAll("\\\\bullet\\\\tab",  "B");I haven't tested that though.

  • How to use Special Characters in CONCAT function or another form with Xquer

    Hello everyone
    I'm using PS3 OEPE within message flow (proxy)and I'm using Xquery.
    I'm using the CONCAT function, but this does not allow me to concatenate special characters not allowed, for example:
    I want to concatenate these strings:
    String1 = “&amp;lt;get-person&amp;gt;&amp;lt;id-person&amp;;gt;”
    String2 = “123”
    String3 = “&amp;lt;/id-person&amp;;gt; &amp;lt;/get-person&amp;gt;”
    I want to represent characters regex. It means no XML characters
    Someone knows some way, any function that allows me to concatenate in OSB these values with Xquery?
    Edited by: chromosoma on Sep 5, 2012 5:59 PM

    Hi,
    It seems to me you're doing things in the most complicated way possible...
    Firstly, you should use codepoints-to-string not the reverse... Secondly, the function work with decimals, not hexa
    http://www.xqueryfunctions.com/xq/fn_codepoints-to-string.html
    http://www.xqueryfunctions.com/xq/fn_string-to-codepoints.html
    This works...
    concat(codepoints-to-string(38),'lt',codepoints-to-string(59),'get-person')But this also works... Note that I've inserted a space between the &amp; and the lt so the forum formatting can show it...
    let
    $String1 := "& lt;get-person& gt;& lt;id-person& gt;",
    $String2 := "123",
    $String3 := "& lt;/id-person& gt;& lt;/get-person& gt;"
    return
         concat($String1,$String2,$String3)And, finally this also works... So what's the reason for escaping &lt; and &gt; with &amp;lt and &amp;gt; and why codepoints?
    let
    $String1 := "<get-person><id-person>",
    $String2 := "123",
    $String3 := "</id-person></get-person>"
    return
         concat($String1,$String2,$String3)Cheers,
    Vlad

  • How to use special characters in Report Builder

    Hi everyone,
    I wonder if you guys can help me. I'm trying to change our Invoice hearders from English to Portuguese. Eg, I've changed this English heading
    ("FOR ACCOUNT QUERIES CONTACT") to this Portuguese heading ("PARA CONSULTAS DE CONTA CONTACTE"). So when I'm done, my entire invoice will be in Portuguese. This works fine, until I get special characters in some of the Portuguese translations. I can copy and paste the translations with special characters into Report Builder. But when I print the invoice in Oracle Apps (with a PDF output), the special characters get replaced with a "?".
    Here's an example:
    < "Line No" should read "Linha nº" but it prints out as "Linha n?" > Does anybother know how I can resolve this? I'm using Report Builder: 10.1.2.3.0 on Oracle Apps: 11.5.10.2 and RDBMS : 10.2.0.4.0
    Thank you in advance

    Hi,
    You need to have Portuguese font installed on your machine, if you are running the report from your machine or else if you are running the same from report server then the font has to be there on the server font dir.

  • How to use Unicode characters with TestStand?

    I'm trying to implement the use of Greek characters such as mu and omega for units. I enabled multi-byte support in the station options and attempted to paste some characters in. I was able to paste the mu character (μ) and import it from Excel with PropertyLoader. However, I have not had any luck with omega (Ω). I found the HTML codes for these characters on a web page (http://www.hclrss.demon.co.uk/unicode/) so I could use those codes for HTML reports, but that won't work for database logging, nor does it display the characters correctly for the operator interface. The operator interface is not a major problem, but the database must have the correct characters for customer reports. Anyone know how to do this? D
    oes database logging support Unicode for stored procedure calls to Oracle?

    Hello Mark -
    At this time TestStand has no unicode support. The multi-byte support that we do offer is based on the Windows architecture that handles Asian language fonts. It really isn't meant to provide a bridge for unicode values in TestStand. Certainly, your Operator Interface environment will have its own support level for unicode, i.e. at this time neither LabWindows/CVI version 6.0 nor LabVIEW 6.1 officially support unicode characters. This is why you will see that the units defined in the TestStand enumerators are all text-based values.
    I have run a quick test here, probably similar to what you were doing on your end, and I am uncertain if you will get the database behavior you want from TestStand. The database logging steps and API all use basic char sty
    le strings to communicate to the driver. Even though you are reading in a good value from Excel, TestStand is interpreting the character as the nearest ASCII equivalent, i.e. "Ω" will be stored and sent to the database as "O". If you have a stored proceedure in Oracle that is calling on some TestStand variable or property string as an input, then it is doubtful you will get correct transmission of the values to the database. If your stored proceedure could call into a spreadsheet directly, you would probably have better luck.
    Regards,
    Elaine R.
    National Instruments
    http://www.ni.com/ask

  • How to remove escape characters

    When there is string in my source like my boss is "chandra" it is taking like it is taking like "my boss is ""chandra""".
    Could you please give me suggestion how I can eliminate unnecessary escape character.
    -Pallav

    Hi Pallav,
    Is possible to you just use a replace function at a stage area mapping?
    like: (assume that "my boss is ""chandra""" is at col1)
    replace(col1, '""', '"')
    it's means, replace 2 " by 1 "

  • How to check escape characters

    Hi,
    I have multiple rows in table data which contain charcters like (enclosed in []) [' &] etc which i want to insert in another table but as I insert the rows with above data (for eg. &) it prompts me for input as & is input charcter.. How can i find such rows with all such characters in table with say 50k records..? any generalized script for that..?
    Thx,
    JP

    i want to insert in another table but as I insert the rows with above data (for eg. &) it
    prompts me for input as & is input charcterI have to say that I don't understand your problem. What are your insert statement ?
    It work fine for me :
      1  create table ch
      2  as select '['']' col from dual
      3  union all
      4  select '['''||chr(38)||']' from dual
      5  union all
      6* select '['''||chr(92)||']' from dual
    SQL> /
    Table created.
    SQL> select * from ch;
    COL
    SQL> create table ch2 (col varchar2(10));
    Table created.
    SQL> insert into ch2 select col from ch;
    3 rows created.
    SQL> select * from ch2;
    COL
    SQL> Nicolas.

  • How to use special characters in rtf template?

    Hi,
    We are using .rtf template to print an invoice in pdf format.
    Now the requirement to put special character under footer section as below.
    "New York • London • Houston • Berlin • Vienna • Sydney • São Paulo • Singapore "
    I use same in rtf template but report output showing as below
    "New York ? London ? Houston ? Berlin ? Vienna ? Sydney ? São Paulo ? Singapore " .
    I tried with placeholder column but no luck.
    Can anyone help me?
    Thanks in advance!!

    hi,
    find in this link
    Count Number of Groups

  • How do I escape single quotes in SQL queries

    Hi
    I am using EclipseLink + EJB 3.0.
    When single quote ( ' ) is entered as search criteria for JPA query, it throws exception.
    As specified in the bolow link , its generic sql problem.
    http://it.toolbox.com/wiki/index.php/How_do_I_escape_single_quotes_in_SQL_queries%3F
    If single-quote is used to escape a single-quote, it might fail in mySQL (which use a backslash as the escape character).
    Please suggest generic way to resolve this issue, so that it works across DBMS.
    Thanks
    Tilak

    Hello,
    I'm not sure of the query you are trying to execute, or why you would link an article that is strongly suggestiong parameter binding when you state you are looking for escape characters. If you pass in the parameter, you do not need to use escape characters, and EclipseLink uses parameter binding by default.
    What is the exception you are getting, and the SQL that is generated? Is this a native query or a JPQL query?
    Best Regards,
    Chris

Maybe you are looking for

  • How to create a sequence for an particular item in my apex form

    Hi friends, I created an database application, of a form with a report, and it is working fine... But in my form, i have a requirement....The below are the existing fields in my form issue no created by start date status priority due date Among these

  • IPod Touch 5th Gen will connect to computer and display in iTunes, but will not turn on

    I've had my iPod touch 5th gen in a Lifeproof case and was taking some pictures, and lo and behold, the case seal leaked. I got water inside my case and immediately turned my iPod off and placed it in rice. After two weeks of drying in rice in a warm

  • Float notes are not working

    Im using Float Notes for Firefox https://addons.mozilla.org/en-US/firefox/addon/floatnotes/ But they stopped working about week ago. I dont know why. I guess it can be another plug-in blocking them. But they were very usefull for me. Now even the Men

  • Missing features in Leopard

    I have just done a clean install of Tiger on a spare G5... Apple are quite clearly stripping out useful parts of apps within the O.S WHY? For example left of the To Do button in Leopard, you have in Tiger another button click on it and every entry is

  • Need serial number for Quick Time Pro

    I bough Quick Time Pro two years ago need to reload it can't find serial number. Have reformatted, how can I get my serial number?