Schema Name is not identified in persistence.xml

Hi
i am calling the schema in persistence.xml, schema name is not identified, if i give in entity level it working.
<property name="toplink.jdbc.schema" value="mySchema"/>
my persistance.xml folows
<persistence-unit name="TestDB2" transaction-type="RESOURCE_LOCAL">
<provider>oracle.toplink.essentials.PersistenceProvider</provider>
<class>com.test.jpa.TblCustAddress</class>
<class>com.test.jpa.TblCustomer</class>
<class>com.test.jpa.TblCustContact</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="toplink.jdbc.url" value="url"/>
<property name="toplink.jdbc.user" value="userName"/>
<property name="toplink.jdbc.driver" value="com.ibm.db2.jcc.DB2Driver"/>
<property name="toplink.jdbc.password" value="Password"/>
<property name="toplink.jdbc.schema" value="mySchema"/>
</properties>
</persistence-unit>
please help me on this.......
srini

Hi Vinay,
I am using the three entityclasses, SimpleSessionCustomizer and one mainclass see the below.
persistence.xml
<persistence-unit name="TestDB2" transaction-type="RESOURCE_LOCAL">
<provider>oracle.toplink.essentials.PersistenceProvider</provider>
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
<class>com.test.jpa.TblCustAddress</class>
<class>com.test.jpa.TblCustomer</class>
<class>com.test.jpa.TblCustContact</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="toplink.jdbc.url" value="jdbc:db2://host:port/TESTDATA"/>
<property name="toplink.jdbc.user" value="user"/>
<property name="toplink.jdbc.driver" value="com.ibm.db2.jcc.DB2DataSource"/>
<property name="toplink.jdbc.password" value="password"/>
<property name="toplink.session.customizer" value="com.test.jpa.impl.SampleSessionCustomizer" />
</properties>
</persistence-unit>
EntityClass  One:
* To change this template, choose Tools | Templates
* and open the template in the editor.
package com.test.jpa;
import java.io.Serializable;
import java.util.Collection;
import java.util.Date;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.persistence.UniqueConstraint;
* @author Srinivasulu.Kristnam
@Entity
@Table(name = "tblCustomer", schema="POLINFO", uniqueConstraints = {@UniqueConstraint(columnNames = {"txtGivenName1", "PK_customer"}), @UniqueConstraint(columnNames = {"FK_contact", "PK_customer"}), @UniqueConstraint(columnNames = {"txtLatestAgt", "txtType", "PK_customer"}), @UniqueConstraint(columnNames = {"txtType", "PK_customer"}), @UniqueConstraint(columnNames = {"txtLegacyID", "PK_customer"}), @UniqueConstraint(columnNames = {"FK_address", "FK_contact", "PK_customer"})})
//@NamedQueries({@NamedQuery(name = "TblCustomer.findAll", query = "SELECT t FROM TblCustomer t"), @NamedQuery(name = "TblCustomer.findByPKcustomer", query = "SELECT t FROM TblCustomer t WHERE t.pKcustomer = :pKcustomer"), @NamedQuery(name = "TblCustomer.findByFKcustomer", query = "SELECT t FROM TblCustomer t WHERE t.fKcustomer = :fKcustomer"), @NamedQuery(name = "TblCustomer.findByFKcontact", query = "SELECT t FROM TblCustomer t WHERE t.fKcontact = :fKcontact"), @NamedQuery(name = "TblCustomer.findByFKaddress", query = "SELECT t FROM TblCustomer t WHERE t.fKaddress = :fKaddress"), @NamedQuery(name = "TblCustomer.findByTxtCustomerID", query = "SELECT t FROM TblCustomer t WHERE t.txtCustomerID = :txtCustomerID"), @NamedQuery(name = "TblCustomer.findByTxtLegacyID", query = "SELECT t FROM TblCustomer t WHERE t.txtLegacyID = :txtLegacyID"), @NamedQuery(name = "TblCustomer.findByTxtNationalID", query = "SELECT t FROM TblCustomer t WHERE t.txtNationalID = :txtNationalID"), @NamedQuery(name = "TblCustomer.findByTxtSSNID", query = "SELECT t FROM TblCustomer t WHERE t.txtSSNID = :txtSSNID"), @NamedQuery(name = "TblCustomer.findByTxtSex", query = "SELECT t FROM TblCustomer t WHERE t.txtSex = :txtSex"), @NamedQuery(name = "TblCustomer.findByDteDOB", query = "SELECT t FROM TblCustomer t WHERE t.dteDOB = :dteDOB"), @NamedQuery(name = "TblCustomer.findByTxtAgtCd", query = "SELECT t FROM TblCustomer t WHERE t.txtAgtCd = :txtAgtCd"), @NamedQuery(name = "TblCustomer.findByTxtLatestAgt", query = "SELECT t FROM TblCustomer t WHERE t.txtLatestAgt = :txtLatestAgt"), @NamedQuery(name = "TblCustomer.findByTxtFamilyName", query = "SELECT t FROM TblCustomer t WHERE t.txtFamilyName = :txtFamilyName"), @NamedQuery(name = "TblCustomer.findByTxtGivenName1", query = "SELECT t FROM TblCustomer t WHERE t.txtGivenName1 = :txtGivenName1"), @NamedQuery(name = "TblCustomer.findByTxtGivenName2", query = "SELECT t FROM TblCustomer t WHERE t.txtGivenName2 = :txtGivenName2"), @NamedQuery(name = "TblCustomer.findByTxtNickname", query = "SELECT t FROM TblCustomer t WHERE t.txtNickname = :txtNickname"), @NamedQuery(name = "TblCustomer.findByTxtCreatedby", query = "SELECT t FROM TblCustomer t WHERE t.txtCreatedby = :txtCreatedby"), @NamedQuery(name = "TblCustomer.findByTxtChangedby", query = "SELECT t FROM TblCustomer t WHERE t.txtChangedby = :txtChangedby"), @NamedQuery(name = "TblCustomer.findByTxtOffice", query = "SELECT t FROM TblCustomer t WHERE t.txtOffice = :txtOffice"), @NamedQuery(name = "TblCustomer.findByDteCreated", query = "SELECT t FROM TblCustomer t WHERE t.dteCreated = :dteCreated"), @NamedQuery(name = "TblCustomer.findByDteLastupd", query = "SELECT t FROM TblCustomer t WHERE t.dteLastupd = :dteLastupd"), @NamedQuery(name = "TblCustomer.findByTxtStatus", query = "SELECT t FROM TblCustomer t WHERE t.txtStatus = :txtStatus"), @NamedQuery(name = "TblCustomer.findByTxtType", query = "SELECT t FROM TblCustomer t WHERE t.txtType = :txtType"), @NamedQuery(name = "TblCustomer.findByTxtFindphone", query = "SELECT t FROM TblCustomer t WHERE t.txtFindphone = :txtFindphone"), @NamedQuery(name = "TblCustomer.findByTxtFindpostCd", query = "SELECT t FROM TblCustomer t WHERE t.txtFindpostCd = :txtFindpostCd"), @NamedQuery(name = "TblCustomer.findByDteExternupd", query = "SELECT t FROM TblCustomer t WHERE t.dteExternupd = :dteExternupd"), @NamedQuery(name = "TblCustomer.findByTxtSource", query = "SELECT t FROM TblCustomer t WHERE t.txtSource = :txtSource"), @NamedQuery(name = "TblCustomer.findByTxtID", query = "SELECT t FROM TblCustomer t WHERE t.txtID = :txtID"), @NamedQuery(name = "TblCustomer.findByTxtEmail", query = "SELECT t FROM TblCustomer t WHERE t.txtEmail = :txtEmail"), @NamedQuery(name = "TblCustomer.findByTxtURL", query = "SELECT t FROM TblCustomer t WHERE t.txtURL = :txtURL"), @NamedQuery(name = "TblCustomer.findByTxtSicCd", query = "SELECT t FROM TblCustomer t WHERE t.txtSicCd = :txtSicCd"), @NamedQuery(name = "TblCustomer.findByIntStamp", query = "SELECT t FROM TblCustomer t WHERE t.intStamp = :intStamp"), @NamedQuery(name = "TblCustomer.findByTxtClientkey", query = "SELECT t FROM TblCustomer t WHERE t.txtClientkey = :txtClientkey"), @NamedQuery(name = "TblCustomer.findByTxtExceptionCd", query = "SELECT t FROM TblCustomer t WHERE t.txtExceptionCd = :txtExceptionCd"), @NamedQuery(name = "TblCustomer.findByTxtScoregroup", query = "SELECT t FROM TblCustomer t WHERE t.txtScoregroup = :txtScoregroup"), @NamedQuery(name = "TblCustomer.findByTxtImportanceRating", query = "SELECT t FROM TblCustomer t WHERE t.txtImportanceRating = :txtImportanceRating"), @NamedQuery(name = "TblCustomer.findByTxtTerritory", query = "SELECT t FROM TblCustomer t WHERE t.txtTerritory = :txtTerritory"), @NamedQuery(name = "TblCustomer.findByTxtRegno", query = "SELECT t FROM TblCustomer t WHERE t.txtRegno = :txtRegno"), @NamedQuery(name = "TblCustomer.findByDteIncorp", query = "SELECT t FROM TblCustomer t WHERE t.dteIncorp = :dteIncorp"), @NamedQuery(name = "TblCustomer.findByTxtIncorpCountry", query = "SELECT t FROM TblCustomer t WHERE t.txtIncorpCountry = :txtIncorpCountry"), @NamedQuery(name = "TblCustomer.findByTxtSourceOrigin", query = "SELECT t FROM TblCustomer t WHERE t.txtSourceOrigin = :txtSourceOrigin"), @NamedQuery(name = "TblCustomer.findByTxtFullName", query = "SELECT t FROM TblCustomer t WHERE t.txtFullName = :txtFullName")})
public class TblCustomer implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@Column(name = "PK_customer", nullable = false, length = 12)
private String pKcustomer;
@Column(name = "FK_customer", length = 12)
private String fKcustomer;
@Column(name = "FK_contact", length = 12)
private String fKcontact;
@Column(name = "FK_address", length = 12)
private String fKaddress;
@Basic(optional = false)
@Column(name = "txtCustomerID", nullable = false, length = 12)
private String txtCustomerID;
@Basic(optional = false)
@Column(name = "txtLegacyID", nullable = false, length = 10)
private String txtLegacyID;
@Column(name = "txtNationalID", length = 20)
private String txtNationalID;
@Column(name = "txtSSNID", length = 20)
private String txtSSNID;
@Column(name = "txtSex")
private Character txtSex;
@Column(name = "dteDOB")
@Temporal(TemporalType.TIMESTAMP)
private Date dteDOB;
@Column(name = "txtAgtCd", length = 10)
private String txtAgtCd;
@Column(name = "txtLatestAgt", length = 10)
private String txtLatestAgt;
@Column(name = "txtFamilyName", length = 30)
private String txtFamilyName;
@Column(name = "txtGivenName1", length = 35)
private String txtGivenName1;
@Column(name = "txtGivenName2", length = 35)
private String txtGivenName2;
@Column(name = "txtNickname", length = 100)
private String txtNickname;
@Column(name = "txtCreatedby", length = 12)
private String txtCreatedby;
@Column(name = "txtChangedby", length = 12)
private String txtChangedby;
@Column(name = "txtOffice", length = 12)
private String txtOffice;
@Column(name = "dteCreated")
@Temporal(TemporalType.TIMESTAMP)
private Date dteCreated;
@Column(name = "dteLastupd")
@Temporal(TemporalType.TIMESTAMP)
private Date dteLastupd;
@Column(name = "txtStatus", length = 10)
private String txtStatus;
@Lob
@Column(name = "binMark")
private byte[] binMark;
@Column(name = "txtType", length = 10)
private String txtType;
@Column(name = "txtFindphone", length = 20)
private String txtFindphone;
@Column(name = "txtFindpostCd", length = 10)
private String txtFindpostCd;
@Column(name = "dteExternupd")
@Temporal(TemporalType.TIMESTAMP)
private Date dteExternupd;
@Column(name = "txtSource", length = 10)
private String txtSource;
@Column(name = "txtID", length = 10)
private String txtID;
@Column(name = "txtEmail", length = 60)
private String txtEmail;
@Column(name = "txtURL", length = 60)
private String txtURL;
@Column(name = "txtSicCd", length = 10)
private String txtSicCd;
@Basic(optional = false)
@Column(name = "intStamp", nullable = false)
private int intStamp;
@Column(name = "txtClientkey", length = 12)
private String txtClientkey;
@Column(name = "txtExceptionCd", length = 10)
private String txtExceptionCd;
@Column(name = "txtScoregroup", length = 10)
private String txtScoregroup;
@Column(name = "txtImportanceRating", length = 10)
private String txtImportanceRating;
@Column(name = "txtTerritory", length = 10)
private String txtTerritory;
@Column(name = "txtRegno", length = 20)
private String txtRegno;
@Column(name = "dteIncorp")
@Temporal(TemporalType.TIMESTAMP)
private Date dteIncorp;
@Column(name = "txtIncorpCountry", length = 10)
private String txtIncorpCountry;
@Column(name = "txtSourceOrigin", length = 15)
private String txtSourceOrigin;
// @Basic(optional = false)
// @Lob
//@Column(name = "CustTimestamp", nullable = false)
// @Transient
// private byte[] custTimestamp;
@Column(name = "txtFullName", length = 100)
private String txtFullName;
@OneToMany(cascade = {CascadeType.PERSIST,CascadeType.REMOVE}, mappedBy = "fKcustomer")
private Collection<TblCustAddress> tblCustAddressCollection;
@OneToMany(cascade = CascadeType.PERSIST, mappedBy = "fKcustomer")
private Collection<TblCustContact> custContacts;
public Collection<TblCustContact> getCustContacts() {
return custContacts;
public void setCustContacts(Collection<TblCustContact> custContacts) {
this.custContacts = custContacts;
public TblCustomer() {
public TblCustomer(String pKcustomer) {
this.pKcustomer = pKcustomer;
public TblCustomer(String pKcustomer, String txtCustomerID, String txtLegacyID, int intStamp/*, byte[] custTimestamp*/) {
this.pKcustomer = pKcustomer;
this.txtCustomerID = txtCustomerID;
this.txtLegacyID = txtLegacyID;
this.intStamp = intStamp;
//this.custTimestamp = custTimestamp;
public String getPKcustomer() {
return pKcustomer;
public void setPKcustomer(String pKcustomer) {
this.pKcustomer = pKcustomer;
public String getFKcustomer() {
return fKcustomer;
public void setFKcustomer(String fKcustomer) {
this.fKcustomer = fKcustomer;
public String getFKcontact() {
return fKcontact;
public void setFKcontact(String fKcontact) {
this.fKcontact = fKcontact;
public String getFKaddress() {
return fKaddress;
public void setFKaddress(String fKaddress) {
this.fKaddress = fKaddress;
public String getTxtCustomerID() {
return txtCustomerID;
public void setTxtCustomerID(String txtCustomerID) {
this.txtCustomerID = txtCustomerID;
public String getTxtLegacyID() {
return txtLegacyID;
public void setTxtLegacyID(String txtLegacyID) {
this.txtLegacyID = txtLegacyID;
public String getTxtNationalID() {
return txtNationalID;
public void setTxtNationalID(String txtNationalID) {
this.txtNationalID = txtNationalID;
public String getTxtSSNID() {
return txtSSNID;
public void setTxtSSNID(String txtSSNID) {
this.txtSSNID = txtSSNID;
public Character getTxtSex() {
return txtSex;
public void setTxtSex(Character txtSex) {
this.txtSex = txtSex;
public Date getDteDOB() {
return dteDOB;
public void setDteDOB(Date dteDOB) {
this.dteDOB = dteDOB;
public String getTxtAgtCd() {
return txtAgtCd;
public void setTxtAgtCd(String txtAgtCd) {
this.txtAgtCd = txtAgtCd;
public String getTxtLatestAgt() {
return txtLatestAgt;
public void setTxtLatestAgt(String txtLatestAgt) {
this.txtLatestAgt = txtLatestAgt;
public String getTxtFamilyName() {
return txtFamilyName;
public void setTxtFamilyName(String txtFamilyName) {
this.txtFamilyName = txtFamilyName;
public String getTxtGivenName1() {
return txtGivenName1;
public void setTxtGivenName1(String txtGivenName1) {
this.txtGivenName1 = txtGivenName1;
public String getTxtGivenName2() {
return txtGivenName2;
public void setTxtGivenName2(String txtGivenName2) {
this.txtGivenName2 = txtGivenName2;
public String getTxtNickname() {
return txtNickname;
public void setTxtNickname(String txtNickname) {
this.txtNickname = txtNickname;
public String getTxtCreatedby() {
return txtCreatedby;
public void setTxtCreatedby(String txtCreatedby) {
this.txtCreatedby = txtCreatedby;
public String getTxtChangedby() {
return txtChangedby;
public void setTxtChangedby(String txtChangedby) {
this.txtChangedby = txtChangedby;
public String getTxtOffice() {
return txtOffice;
public void setTxtOffice(String txtOffice) {
this.txtOffice = txtOffice;
public Date getDteCreated() {
return dteCreated;
public void setDteCreated(Date dteCreated) {
this.dteCreated = dteCreated;
public Date getDteLastupd() {
return dteLastupd;
public void setDteLastupd(Date dteLastupd) {
this.dteLastupd = dteLastupd;
public String getTxtStatus() {
return txtStatus;
public void setTxtStatus(String txtStatus) {
this.txtStatus = txtStatus;
public byte[] getBinMark() {
return binMark;
public void setBinMark(byte[] binMark) {
this.binMark = binMark;
public String getTxtType() {
return txtType;
public void setTxtType(String txtType) {
this.txtType = txtType;
public String getTxtFindphone() {
return txtFindphone;
public void setTxtFindphone(String txtFindphone) {
this.txtFindphone = txtFindphone;
public String getTxtFindpostCd() {
return txtFindpostCd;
public void setTxtFindpostCd(String txtFindpostCd) {
this.txtFindpostCd = txtFindpostCd;
public Date getDteExternupd() {
return dteExternupd;
public void setDteExternupd(Date dteExternupd) {
this.dteExternupd = dteExternupd;
public String getTxtSource() {
return txtSource;
public void setTxtSource(String txtSource) {
this.txtSource = txtSource;
public String getTxtID() {
return txtID;
public void setTxtID(String txtID) {
this.txtID = txtID;
public String getTxtEmail() {
return txtEmail;
public void setTxtEmail(String txtEmail) {
this.txtEmail = txtEmail;
public String getTxtURL() {
return txtURL;
public void setTxtURL(String txtURL) {
this.txtURL = txtURL;
public String getTxtSicCd() {
return txtSicCd;
public void setTxtSicCd(String txtSicCd) {
this.txtSicCd = txtSicCd;
public int getIntStamp() {
return intStamp;
public void setIntStamp(int intStamp) {
this.intStamp = intStamp;
public String getTxtClientkey() {
return txtClientkey;
public void setTxtClientkey(String txtClientkey) {
this.txtClientkey = txtClientkey;
public String getTxtExceptionCd() {
return txtExceptionCd;
public void setTxtExceptionCd(String txtExceptionCd) {
this.txtExceptionCd = txtExceptionCd;
public String getTxtScoregroup() {
return txtScoregroup;
public void setTxtScoregroup(String txtScoregroup) {
this.txtScoregroup = txtScoregroup;
public String getTxtImportanceRating() {
return txtImportanceRating;
public void setTxtImportanceRating(String txtImportanceRating) {
this.txtImportanceRating = txtImportanceRating;
public String getTxtTerritory() {
return txtTerritory;
public void setTxtTerritory(String txtTerritory) {
this.txtTerritory = txtTerritory;
public String getTxtRegno() {
return txtRegno;
public void setTxtRegno(String txtRegno) {
this.txtRegno = txtRegno;
public Date getDteIncorp() {
return dteIncorp;
public void setDteIncorp(Date dteIncorp) {
this.dteIncorp = dteIncorp;
public String getTxtIncorpCountry() {
return txtIncorpCountry;
public void setTxtIncorpCountry(String txtIncorpCountry) {
this.txtIncorpCountry = txtIncorpCountry;
public String getTxtSourceOrigin() {
return txtSourceOrigin;
public void setTxtSourceOrigin(String txtSourceOrigin) {
this.txtSourceOrigin = txtSourceOrigin;
// public byte[] getCustTimestamp() {
// return custTimestamp;
// public void setCustTimestamp(byte[] custTimestamp) {
// this.custTimestamp = custTimestamp;
public String getTxtFullName() {
return txtFullName;
public void setTxtFullName(String txtFullName) {
this.txtFullName = txtFullName;
public Collection<TblCustAddress> getTblCustAddressCollection() {
return tblCustAddressCollection;
public void setTblCustAddressCollection(Collection<TblCustAddress> tblCustAddressCollection) {
this.tblCustAddressCollection = tblCustAddressCollection;
@Override
public int hashCode() {
int hash = 0;
hash += (pKcustomer != null ? pKcustomer.hashCode() : 0);
return hash;
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof TblCustomer)) {
return false;
TblCustomer other = (TblCustomer) object;
if ((this.pKcustomer == null && other.pKcustomer != null) || (this.pKcustomer != null && !this.pKcustomer.equals(other.pKcustomer))) {
return false;
return true;
@Override
public String toString() {
return "com.test.jpa.TblCustomer[pKcustomer=" + pKcustomer + "]";
}

Similar Messages

  • Javax.servlet.ServletException: The name "" is not legal for JDOM/XML namespaces

    Dear all,
    First of all sorry, if this is not the right place for my question.
    I am facing some problem with the XFire Webservices. When i am trying to access the WSDL through the url. server is throwing the following exception :
    javax.servlet.ServletException: The name "" is not legal for JDOM/XML namespaces: Namespace URIs must be non-null and non-empty Strings.
         org.codehaus.xfire.transport.http.XFireServletController.doService(XFireServletController.java:143)
         org.codehaus.xfire.transport.http.XFireServlet.doGet(XFireServlet.java:107)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    root cause
    org.jdom.IllegalNameException: The name "" is not legal for JDOM/XML namespaces: Namespace URIs must be non-null and non-empty Strings.
         org.jdom.Namespace.getNamespace(Namespace.java:164)
         org.codehaus.xfire.util.NamespaceHelper.getUniquePrefix(NamespaceHelper.java:58)
         org.codehaus.xfire.aegis.type.basic.BeanType.writeSchema(BeanType.java:560)
         org.codehaus.xfire.wsdl.AbstractWSDL.addDependency(AbstractWSDL.java:224)
         org.codehaus.xfire.wsdl.AbstractWSDL.addDependency(AbstractWSDL.java:233)
         org.codehaus.xfire.wsdl11.builder.WSDLBuilder.createDocLitPart(WSDLBuilder.java:403)
         org.codehaus.xfire.wsdl11.builder.WSDLBuilder.createPart(WSDLBuilder.java:355)
         org.codehaus.xfire.wsdl11.builder.WSDLBuilder.writeParameters(WSDLBuilder.java:509)
    cont.......
    I am not able to figure out the root cause for this. The service.xml file looks like below:
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- START Service.xml -->
    <beans xmlns="http://xfire.codehaus.org/config/1.0">
    <!-- Construct the castor service factory by Spring -->
    <bean id="castorTypeRegistry" class="org.codehaus.xfire.castor.CastorTypeMappingRegistry"/>
    <bean id="bindingProvider" class="org.codehaus.xfire.aegis.AegisBindingProvider">
    <constructor-arg ref="castorTypeRegistry"/>
    </bean>
    <bean id="castorServiceFactory" class="org.codehaus.xfire.service.binding.ObjectServiceFactory">
    <constructor-arg index="0" ref="xfire.transportManager"/>
    <constructor-arg index="1" ref="bindingProvider"/>
    </bean>
    <service>
    <name>ReleaseManager</name>
    <namespace>ReleaseManager</namespace>
    <serviceClass>com.pinkroccade.jfoundation.calculation.releases.ReleaseManager</serviceClass>
    <implementationClass>com.pinkroccade.jfoundation.calculation.releases.ReleaseManagerImpl</implementationClass>
    <schemas>
    <schema>META-INF/schema/release-impact-worksheet-3.2.0.xsd</schema>
    </schemas>
    <style>document</style>
    <serviceFactory>#castorServiceFactory</serviceFactory>
    </service>
    </beans>
    <!-- END Service.xml-->
    The issue which i am facing is it due to the problem with the service.xml (Which i dont think so..), Or is it any thing to do with the XSD file which i am using.
    Can any body give me some guide lines for this ????
    Thanks in advance.
    Thanks and Regards,
    Manjunath.

    Any one any thoughts..
    I need to find out the solution for this as soon as possible; Not able to proceed further...
    Thanks and Regards,
    Manjunath.

  • How to make sure that schema name is not included with generated sqls

    How to make sure that schema name is not included with generated sqls with tableadapter wizard.
    What should I use? Oledb, ODT.NET, where can set that I want "pure" sqls, not schemas, not ", or anything like this
    I want
    "Select a,b from t1" ,not "select "a","b" from schema.t1"
    Also schema name is put in all parameters, all over the place... What if schema name changes. (b1test to b1prod)
    . I now manually edit XML files of dataset. It works but....
    thanks

    The full hardware :
    Processor Intel core due 3.00 MHz
    RAM:1.5GB
    psu:650 Watt (but i baught i cheap one so it may be actually about 400 watt)
    HD Disk:160 GB
    But about the power supply if it not able to run the VGA card ,Is it will not show any screen or it will not able to run the computer??

  • Schema name is not showing in the Data load

    Hi All,
    I am trying to load a CSV file using oracle apex data load option. The options are using a new table and file upload(.csv). In the load data page, the schema name is not listing my current schema because of which i could not to upload the CSV file.
    Can anyone please help on this ?
    I am using oracle apex 4.1.1
    Regards
    Rajendrakumar.P

    Raj,
    Did you export this application from another workspace perhaps? I have seen in the past that if you create a data load page based on schema A and then import that application and set it to parse as schema B, it will not work.
    The solution - although unsupported - is to simply alter the parse-as schema reference in the APEX export file. A more supported version would be to re-create the data load pages in the target application, so that it picks up on the proper parse-as schema.
    Thanks,
    - Scott -
    http://spendolini.blogspot.com
    http://www.enkitec.com

  • Compile Error: "schema 'name' does not exist

    Im trying to build a program that quereys a table in a database but i keep getting this error. Am i missing a link between the files or am i missing a line of code in my program??

    Apologies. I receive a compiler error which reads as follows;
    java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
    java.sql.SQLSyntaxErrorException: Schema 'DEMO' does not exist
    Heres the main body of code i am trying to execute.
    public class Main {
    * @param args the command line arguments
    public static void main(String[] args) {
    // TODO code application logic here
    try{
    Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
    }catch(ClassNotFoundException e){
    System.out.println(e);
    try{
    Connection con = DriverManager.getConnection("jdbc:derby://localhost:1527/SimpleDBDemo", "demo", "demo");
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM DEMO.Table1");
    while (rs.next()) {
    String s = rs.getString("Name");
    float n = rs.getFloat("Age");
    System.out.println(s + " " + n);
    }catch(SQLException e){
    System.err.println(e);
    I am using NetBeans IDE and have created a database under: Services->Databases-> Java DB->SimpleDBDemo.
    I have a database connection in which theres a simple table (called "TABLE1") created which contains the names and ages of two people.
    Hope this makes the problem a bit clearer.
    Any help would be greatly appreciated.

  • Special characters are not identified while uploading XML data( hypen)

    Hello,
           I am uploading XML file data in to sap , i am working on SAP 4.7 EE , when i am parsing the XML data it is not identifying the special characters like hyphen , aphostrophe...in place of them it is showing
    Is there any way, where i can handle this ....is there any solution...otherwise is it is not possible to upload special characters from XML file.
    Kinldy help me ...
    Rgds.,
    subash

    Any inputs????

  • Override JNDI names in persistence.xml and @resource annotation

    I have a Java EE 7 application that I am developing for use with both GlassFish and WildFly, but I have discovered that both application servers use a slightly different format for specifying JNDI names.
    In GlassFish the persistence.xml file references the data source jdbc/myDataSouce, but in WildFly the data source needs to be java:/jdbc/myDataSource.The same is also true for classes that are annotated with @Resource. In GlassFish the annotation for a class using JavaMail would be @Resource(name = "mail/myMailSession"), but to deploy onto WildFly this would need to be @Resource(name = "java:mail/myMailSession").
    The only solution I've got at present is using Maven to create two different releases of the EAR file, with one EAR file containing a persistence.xml file with the data source jdbc/myDataSouce for use with GlassFish, and the second EAR file containing a persistence.xml file with the data source java:/jdbc/myDataSource for use with WildFly. Unfortunately, I haven't found a solution for the @Resource annotation.
    I've taken a look at the documentation for glassfish-application.xml and glassfish-ejb-jar.xml and have tried using resource-ref to override the JNDI names but the application fails to deploy due to an error in the name.
    My question is does GlassFish provide any capability to override the JNDI names specified in the persistence.xml file and classes with the @resource annotation?
    Many Thanks
    Paul

    Have you been able to solve this? I'm attempting to understand what Web Server 7 can do with regard to Java Persistence and what elements of it require Glassfish.
    I've also spent great amounts of time in WS6.1 trying to figure out why a JNDI resource couldn't be found. The rules of thumb I've learned are:
    - Try dropping the *'java:/comp/env/* prefix; just use jdbc/pact part
    - Make sure all referrences (in web.xml and sun-web.xml) are identical with regard to that name.
    I'm hoping you're not still dealing with this (it's been two months!) but if anybody else stumbles on this, maybe it'll help them.
    Dave

  • Schema name of compiling entity automatically prepended - DATA CORRUPTION

    - Synopsis -
    Forms 6i is prepending the schema name of the user who compiled the form when the schema name is unspecified. When a schema name is unspecified, it should use existance and synonym rules associated with the runtime user. Forms new mode of operation is incorrect and may have caused DATA CORRUPTION on our system.
    - Main Text -
    When creating a .fmx under Dev 6i, the user name of the user who compiled the form gets automatically prepended to database functions, procedures, and tables, which are called in a form function or procedure. But this incorrect implicit user/schema name remains hidden from the Developer.
    Forms should not do this, it should, as it used to, allow the database to handle which schema is to be referenced using synonym and existance rules based on the user running the form, not the user who compiled the form.
    This is EXTREMELY BAD. I'm a 12 year veteran of Forms, OCP certified, and this has caused potential DATA CORRUPTION in our database. In our database, we have a main and a test schema, both with all of the same schema elements. We found out that there was a problem when data that was being pulled back from a function was being pulled from the other schema, because the FMB was compiled under that other schema's username.
    The fact that forms will behave this way is not apparent through the Developer either. The prepended schema name does not show up in the procedure or function call. I had to go in to the .fmx file with a hex editor to determine that forms was doing this "for" me.
    If there is some option that tells Forms not to prepend the schema name, please let me know, but I already looked through every entry in Help with the word schema and didn't find anything.
    For any whom work at Oracle, this should be fixed immediately and sent out on the next revision of Developer. This has potentially disastrous affects on data. If a fix has already been made please let me know.
    Thanks,
    Rob Erwin
    [email protected]

    Hi John,
    Yes, we're running against Oracle7. Well, at least I know how to fix the problem, now I just have to find time to update the database.
    Thanks,
    Rob

  • Function not found when package name exists with same name as schema name

    Hi all, any help would be appreciated :)
    I found an issue with pl/sql resolving a functions location when the db has a package name with the same as the db schema name.
    My example:
    -- arbitrary test function, not in any package
    create or replace FUNCTION testFunc
         inTest     IN VARCHAR2
    RETURN VARCHAR2
    AS
    BEGIN
    RETURN 'a';
    END;
    -- There is a package called "FM" with functions that are not referenced or used in this example and the db schema is "FM".
    -- The following PL/SQL fails with the message: "ORA-00904: "FM"."TESTFUNC": invalid identifier"
    select cursor (select testFunc('a') from dual) from dual;
    -- The following PL/SQL works:
    select * from (select testFunc('a') from dual);
    As mentioned the function testFunc is NOT in the FM package. This issue does not happen when I remove the FM package. So it seems like there is an issue with cursors calling functions when there exists any package with the same name as the db schema.
    Can anyone tell me why this happens and also what I can add to force the function that is not in any package to be referenced (without Oracle trying to look in the FM package)?
    DB: Oracle 11.2.0.2
    thanks!
    Paul

    Hi Paul,
    In general I would not advice to have schema and objects with the same name.
    Here is what documentation is saying here: How Name Resolution Differs in PL/SQL and SQL
    PL/SQL uses the same name-resolution rules as SQL when the PL/SQL compiler processes a SQL statement, such as a DML statement. For example, for a name such as HR.JOBS, SQL matches objects in the HR schema first, then packages, types, tables, and views in the current schema.
    PL/SQL uses a different order to resolve names in PL/SQL statements such as assignments and subprogram calls. In the case of a name HR.JOBS, PL/SQL searches first for packages, types, tables, and views named HR in the current schema, then for objects in the HR schema.As you can see above when using PL/SQL for your case Oracle searches first for packages, types, tables, and views named FM in the current schema, then for objects in the FM schema.
    And because a package FM is found it is raising an error due to the fact that the procedure could not be found in that package.
    I hope this clarify.
    Regards.
    Al

  • Bug: numeric schema names not managed correctly

    If a schema name consists of numbers, the generated SQL will always fail.
    In this case, it should put double-quotes around the schema name.
    For example, dragging a table over to the query pane will generate a select statement,
    but since it does not enclose the schema name in double-quotes, the error
    "invalid table name" will be received when trying to run that query.
    I am using version 1.2.1 Build MAIN-32.13.
    Thank you.

    Well, checking the documentation (we are on 10gR2), I do note the following:
    "Nonquoted identifiers must begin with an alphabetic character...".
    So you are right. Alas, this was not something with which I was involved.
    Given that however, it would be a very user-friendly tweak to the product
    to make it more usable - remember, this is a circumstance in which the SQL
    generated by the tool is wrong, which does look bad as it is an Oracle product.

  • Reversing XML getting The Directory Logical Schema Name specified in yo

    Hi,
    While trying to reverse the columns from XML, throws the following error,
    The Directory <<Logical Schema Name>> specified in your schema does not exist.
    what could be the problem. please help.
    Vivek

    It seems that you are using FILE technology instead of XML technology.
    The first one if for flat files, and the second one for XML files, and uses a specific driver for XML data.
    Search for "Creating an XML Data Server" in the user manual. It should help.
    Regards,
    -FX

  • Schema name not present on filename for "Save Package Spec and Body"

    In versions previous to 3.0 EA, the filename defaulted to schema.object.sql when using the "Save Package Spec and Body" on the right click of the package/body. This appears to have disappeared. Also, it now defaults to the .PLS ext/type, which I prefer to save them as .SQL (which i can override, but it would be nice in the file type dropdown). Also, I had posted a suggestion about the actual file not including the schema name prefixing the object name when using the "Save Package Spec and Body". i.e. it does create or replace package reader_package instead of what it should be doing which is create or replace package schema.reader_package

    Would be nice indeed having the real name as default, and all supported PL/SQL types (as in the preferences) in the extensions dropdown.
    As for the schema name inside, I reckon that would do damage for more users than it would do good for others. But a preference would be best of course.
    K.

  • Character '$' is not allowed in an XML tag name. /ERROR

    Hi,
    I was testing cli command java OracleXML getXML ....
    getting following error result:
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: Character '$' is not allowed in an XML tag name.</ERROR>
    This was because the database column name included $ characters.
    Question 1: Is it possible use getXML/putXML cli operations for tables containig these $ columns
    and how?
    Now I found the method setSQLToXMLNameEscaping(true) and tried the same query using the modified
    sample java code of XSU documentation. This time I got error result:
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: You are using an old version of the gss library; thus, sql-xml name escaping is not supported.</ERROR>
    Question 2: What is this gss library and is there up-to-date version available - and will it solve my
    $ problem?
    Thanks,
    Olavi

    Hi,
    I was testing cli command java OracleXML getXML ....
    getting following error result:
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: Character '$' is not allowed in an XML tag name.</ERROR>
    This was because the database column name included $ characters.
    Question 1: Is it possible use getXML/putXML cli operations for tables containig these $ columns
    and how?Please use alias in your SQL query for the column with $, like
    select sys$rowno_info as rowinfo..OK for getXML but how to do this with putXML?
    Now I found the method setSQLToXMLNameEscaping(true) and tried the same query using the modified
    sample java code of XSU documentation. This time I got error result:
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: You are using an old version of the gss library; thus, sql-xml name escaping is not supported.</ERROR>
    Question 2: What is this gss library and is there up-to-date version available - and will it solve my
    $ problem?gss libs is ithe nls_charset12.jar located in jdbc/lib.
    Olavi
    I added nls_charset12.jar dated july 2002 into my classpath without
    success?
    Olavi

  • SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)

    Hi Gurus,
    I am trying to load a HANA column table using the import function and get the following error even though the mappings from the file to the table are 1:1.
    I get the following errors:
    Error 1: SAP DBTech JDBC: Result set is positioned before first row.
    Error 2: SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)
    With the following stack trace:
    com.sap.db.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: [259] (at 26): invalid table name:  Could not find table/view RS_POOL_CLUSTER_TABLES in schema SYSTEM: line 1 col 27 (at pos 26)
      at com.sap.db.jdbc.exceptions.SQLExceptionSapDB.createException(SQLExceptionSapDB.java:334)
      at com.sap.db.jdbc.exceptions.SQLExceptionSapDB.generateDatabaseException(SQLExceptionSapDB.java:165)
      at com.sap.db.jdbc.packet.ReplyPacket.buildExceptionChain(ReplyPacket.java:100)
      at com.sap.db.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:1141)
      at com.sap.db.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:888)
      at com.sap.db.jdbc.StatementSapDB.sendCommand(StatementSapDB.java:929)
      at com.sap.db.jdbc.StatementSapDB.sendSQL(StatementSapDB.java:978)
      at com.sap.db.jdbc.StatementSapDB.execute(StatementSapDB.java:256)
      at com.sap.db.jdbc.StatementSapDB.executeQuery(StatementSapDB.java:401)
      at com.sap.db.jdbc.trace.Statement.executeQuery(Statement.java:131)
      at com.sap.ndb.studio.bi.dataprovisioning.util.DBUtil.getPoolTables(DBUtil.java:200)
      at com.sap.ndb.studio.bi.dataprovisioning.util.DBUtil.getTablesToHide(DBUtil.java:188)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.SelectTableDialog.createDialogArea(SelectTableDialog.java:108)
      at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:775)
      at org.eclipse.jface.window.Window.create(Window.java:432)
      at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1104)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.SelectTableDialog.create(SelectTableDialog.java:186)
      at com.sap.ndb.studio.bi.filedataupload.ui.wizards.pages.ImportFileSelectionWizardPage$14.widgetSelected(ImportFileSelectionWizardPage.java:779)
      at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
      at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
      at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
      at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
      at org.eclipse.jface.window.Window.runEventLoop(Window.java:826)
      at org.eclipse.jface.window.Window.open(Window.java:802)
      at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:152)
      at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:279)
      at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
      at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
      at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
      at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:243)
      at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:224)
      at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
      at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:167)
      at org.eclipse.core.commands.Command.executeWithChecks(Command.java:499)
      at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508)
      at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:213)
      at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:420)
      at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157)
      at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
      at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
      at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
      at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
      at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1057)
      at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4170)
      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
      at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:138)
      at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610)
      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
      at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
      at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
      at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
      at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
    I'm sure many of you have come across this before. Any help will be much appreciated.
    Thanks in advance

    Hello Akhtar,
    Have you tryed to delete the heador row from your file?
    I received the same error when loading a csv file, but when I delete the heador row it worked.
    Best Regards,
    Juliana Genova

  • I want to use a dynamic schema name in the from clause but its not working.

    DECLARE
         vblQueryName VARCHAR2(20);
         vblSchemaName VARCHAR2(20);
    BEGIN
         SELECT CurrentSchemaName INTO vblSchemaName FROM HR_989_SCHEMA;
         vblQueryName:='060_525_020';
         INSERT /*+ APPEND(HP_ELIGIBILITIES,4) */ INTO HP_ELIGIBILITIES
              LVL1ID,
              LVL1Desc,
              LVL2ID,
              LVL2Desc,
              LVL3ID,
              LVL3Desc,
              LVL4ID,
              LVL4Desc
         SELECT /*+ PARALLEL(a,4) */
              LVL1ID,
              LVL1Desc,
              LVL2ID,
              LVL2Desc,
              LVL3ID,
              LVL3Desc,
              LVL4ID,
              LVL4Desc
         FROM
         bold     vblSchemaName.HP_ELIGIBILITIES a
         WHERE
              UPPER(LVL2ID) = 'XX' ;
         COMMIT;
    DBMS_OUTPUT.PUT_LINE( 'Query Executed: ' || vblqueryName);
    INSERT INTO HP_QUERYEXECLOG(QueryName) VALUES(vblQueryName);
    EXCEPTION WHEN NO_DATA_FOUND THEN NULL;
    END;
    I want to create a rules table so that the schema name in front of the table name in the from clause can be controlled by a separate table that is maintained but its not working . Help and your valuable inputs needed for this issue

    I want to use a dynamic schema name in the from clauseyou can alternatively set the current schema as e.g. in:
    declare
       vblqueryname    varchar2 (20);
       vblschemaname   varchar2 (20);
    begin
       select currentschemaname into vblschemaname from hr_989_schema;
       vblqueryname := '060_525_020';
       execute immediate 'alter session set current_schema=' || vblschemaname;
       insert /*+ APPEND(HP_ELIGIBILITIES,4) */
             into hp_eligibilities (lvl1id,
                                    lvl1desc,
                                    lvl2id,
                                    lvl2desc,
                                    lvl3id,
                                    lvl3desc,
                                    lvl4id,
                                    lvl4desc
          select /*+ PARALLEL(a,4) */
                lvl1id,
                 lvl1desc,
                 lvl2id,
                 lvl2desc,
                 lvl3id,
                 lvl3desc,
                 lvl4id,
                 lvl4desc
            from hp_eligibilities a
           where upper (lvl2id) = 'XX';
       commit;
       dbms_output.put_line ('Query Executed: ' || vblqueryname);
       insert into hp_queryexeclog (queryname)
       values (vblqueryname);
    exception
       when no_data_found
       then
          null;
    end;

Maybe you are looking for

  • Issue adding Child member to the outline in 11.1.2.2

    Hi , We have any Issue with adding the member to the Outline. Details mentioned below. Server locked up when i was updating the outline. I was erasing lower level structure.. This has been a chronic problem.. http://gvw3086-v.atlanta.hp.com:9000/easc

  • Create virtual recordset from XML

    I'm searching a extension that give the possibility to create a virtual recordet from a XML file. Interaktonline had an extension called "XML Import-Export" but isn't compatible with php 5.3 and require Dreamweaver 8. Any ideas how can I resolve this

  • Sustain pedal not working in Mainstage only with Kontakt 4 plugin

    I can't get Kontakt 4.0.2 to sustain notes when instantiated in Mainstage. The sustain pedal works fine for Kontakt in stand alone mode, and for the same patch/channel strip in Logic 9, but not when in a channel strip in MainStage. I have the pedal m

  • Illustrator CS5 closes right after it opens

    After many, many months of being a reliable companion, one of our Illustrator CS5 installations has suddenly started closing itself immediately after opening. We've deleted preferences, uninstalled and reinstalled the software, deleted all but the sy

  • Reg: Tabstrip  tab text change through program.

    Dear all,    I am using tabstrip in my program, my requirement is to change the text of the tab dynamically in the program . please help me in this regard. thanks in advance. Haritha