Lazying question

Hi.
I am not sure what is going on, so here we go :)
I have a "lazy" ManyToOne relationship :
@Entity
public class Build implements Serializable, Comparable<Build> {
@ManyToOne (fetch=FetchType.LAZY)
@JoinColumn(name="MYSWRELEASE_RELEASEID")
protected SWRelease mySWRelease;
public void setSWRelease (SWRelease in) {
this.mySWRelease=in;
public SWRelease getSWRelease() {
return mySWRelease;
@Entity
public class SWRelease implements Serializable, Comparable<SWRelease> {
@OneToMany(cascade=CascadeType.ALL, mappedBy="mySWRelease", fetch=FetchType.LAZY)
private Set<Build> myBuilds = new TreeSet<Build>();
public void setBuilds (Set<Build> in) {
this.myBuilds=in;
public Set<Build> getBuilds() {
return myBuilds;
When I try to get the builds from SWRelease , I get {IndirectSet: not instantiated},
here is the test code:
SWRelease sr=em.find(SWRelease .class,1);
System.out.println("release builds: "+sr.getBuilds());
prints:
release builds: {IndirectSet: not instantiated}
but I can get the SWRelease from the build:
Build b=em.find(Build.class,1);
System.out.println("release : "+b.getSWRelease());
prints:
release : Release 1
Why I am getting {IndirectSet: not instantiated} ?
Here is the code + persitance.xml
import java.io.Serializable;
import java.util.*;
import javax.persistence.*;
@Entity
public class Build implements Serializable, Comparable<Build> {
private static final int HASH_PRIME=37;
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Integer buildId;
@ManyToOne (fetch=FetchType.LAZY)
@JoinColumn(name="MYSWRELEASE_RELEASEID")
protected SWRelease mySWRelease;
@Column(name="number")
private String number;
@Column(name="date")
@Temporal(TemporalType.DATE)
private Date date;
public Build() {
super();
public Date getDate() {
return date;
public void setDate(Date in) {
this.date=in;
public String getNumber() {
return number;
public void setNumber(String in) {
this.number=in;
public void setBuildId(Integer in) {
this.buildId = in;
public Integer getBuildId() {
return this.buildId ;
public void setSWRelease (SWRelease in) {
this.mySWRelease=in;
public SWRelease getSWRelease() {
return mySWRelease;
//@Override
public int hashCode() { 
int ret=0;
ret = HASH_PRIME * (ret + (date !=null ? date.hashCode() : 0));
ret = HASH_PRIME * (ret + (number !=null ? number.hashCode() : 0));
ret = HASH_PRIME * (ret + (buildId !=null ? buildId .hashCode() : 0) );
return ret;
//@Override
public int compareTo(Build other) {
if(other!=null) {
return this.hashCode() - other.hashCode();
return -1;
//@Override
public String toString() { 
String attr1= " date=" +( getDate() !=null ? ""+ getDate() : "NOT SET" );
String attr2= " number=" +( getNumber() !=null ? ""+ getNumber() : "NOT SET" );
String id = " buildId=" + ( getBuildId() !=null ? ""+ getBuildId() : "NOT SET" );
return attr1 + attr2 + id ;
//@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
if (obj == this) {
return true;
if (!(obj instanceof Build)) {
return false;
Build other = (Build) obj;
return (buildId !=null ? buildId.equals(other.buildId) : other.buildId !=null ? false:true) && ( date !=null ? date.equals(other.date) : other.date !=null ? false:true ) && ( number !=null ? number.equals(other.number) : other.number !=null ? false:true );
public Build clone() {
Build ret= new Build();
ret.setBuildId(buildId);
ret.setDate(this.getDate());
ret.setNumber(this.getNumber());
return ret;
package com.xilinx.srs.jpa.autogen;
import java.io.Serializable;
import java.util.*;
import javax.persistence.*;
@Entity
public class SWRelease implements Serializable, Comparable<SWRelease> {
private static final int HASH_PRIME=37;
private static final long serialVersionUID = 1L;
//Attribute list
@Id
@GeneratedValue
private Integer releaseId;
@OneToMany(cascade=CascadeType.ALL, mappedBy="mySWRelease", fetch=FetchType.LAZY)
private Set<Build> myBuilds = new TreeSet<Build>();
@Column(name="name")
private String name;
@Column(name="version")
private String version;
public SWRelease() {
super();
public void setReleaseId(Integer in) {
this.releaseId = in;
public Integer getReleaseId() {
return this.releaseId ;
public String getName() {
return name;
public void setName(String in) {
this.name=in;
public String getVersion() {
return version;
public void setVersion(String in) {
this.version=in;
* Setter for the many side of OneToMany mapping to <code>Build</code>.
* @param in will assing myBuilds to in
public void setBuilds (Set<Build> in) {
this.myBuilds=in;
public Set<Build> getBuilds() {
return myBuilds;
public int hashCode() { 
int ret=0;
ret = HASH_PRIME * (ret + (name !=null ? name.hashCode() : 0));
ret = HASH_PRIME * (ret + (version !=null ? version.hashCode() : 0));
ret = HASH_PRIME * (ret + (releaseId !=null ? releaseId .hashCode() : 0) );
return ret;
public int compareTo(SWRelease other) {
if(other!=null) {
return this.hashCode() - other.hashCode();
return -1;
public String toString() { 
String attr1= " name=" +( getName() !=null ? ""+ getName() : "NOT SET" );
String attr2= " version=" +( getVersion() !=null ? ""+ getVersion() : "NOT SET" );
String id = " releaseId=" + ( getReleaseId() !=null ? ""+ getReleaseId() : "NOT SET" );
return attr1 + attr2 + id ;
public boolean equals(Object obj) {
if (obj == null) {
return false;
if (obj == this) {
return true;
if (!(obj instanceof SWRelease)) {
return false;
SWRelease other = (SWRelease) obj;
return (releaseId !=null ? releaseId.equals(other.releaseId) : other.releaseId !=null ? false:true) && ( name !=null ? name.equals(other.name) : other.name !=null ? false:true ) && ( version !=null ? version.equals(other.version) : other.version !=null ? false:true );
//@Override
public SWRelease clone() {
SWRelease ret= new SWRelease();
ret.setReleaseId(releaseId);
ret.setName(this.getName());
ret.setVersion(this.getVersion());
return ret;
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
persistence_1_0.xsd" version="1.0">
<persistence-unit name="test" >
<provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
<class>com.xilinx.srs.jpa.autogen.Build</class>
<class>com.xilinx.srs.jpa.autogen.SWRelease</class>
<properties>
<!-- Provider-specific connection properties -->
<property name="toplink.jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="toplink.jdbc.url" value="jdbc:mysql://xcort02:3306/whyme"/>
<property name="toplink.jdbc.user" value="me"/>
<property name="toplink.jdbc.password" value="whyme"/>
<!-- Provider-specific settings -->
<property name="toplink.ddl-generation" value="none"/>
<property name="toplink.logging.level" value="FINEST" />
<property name="toplink.create-ddl-jdbc-file-name" value="test-create-tables.sql"/>
<property name="toplink.drop-ddl-jdbc-file-name" value="test-drop-drop.sql"/>
<property name="toplink.target-database" value="MySQL4"/>
<property name="toplink.cache.type.default" value="SoftWeak" />
<property name="toplink.jdbc.write-connections.max" value="1" />
<property name="toplink.jdbc.write-connections.min" value="1" />
<property name="toplink.jdbc.read-connections.max" value="1" />
<property name="toplink.jdbc.read-connections.min" value="1" />
<property name="toplink.weaving" value="true"/>
</properties>           
     </persistence-unit>
</persistence>
Here is the log trace:
[TopLink Finest]: 2008.04.17 05:43:55.611--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.weaving; value=true
[TopLink Finest]: 2008.04.17 05:43:55.678--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.orm.throw.exceptions; default value=true
[TopLink Finer]: 2008.04.17 05:43:55.678--ServerSession(5462872)--Thread(Thread[main,5,main])--Searching for default mapping file in file:/home/brotelan/sandboxes/HEAD/env/Misc/ReleaseTools/lib/jexcelapi/build/
[TopLink Config]: 2008.04.17 05:43:56.264--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.SWRelease] is being defaulted to: SWRelease.
[TopLink Config]: 2008.04.17 05:43:56.269--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.SWRelease] is being defaulted to: SWRELEASE.
[TopLink Config]: 2008.04.17 05:43:56.313--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.SWRelease.releaseId] is being defaulted to: RELEASEID.
[TopLink Config]: 2008.04.17 05:43:56.417--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.Build] is being defaulted to: Build.
[TopLink Config]: 2008.04.17 05:43:56.418--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.Build] is being defaulted to: BUILD.
[TopLink Config]: 2008.04.17 05:43:56.422--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.Build.buildId] is being defaulted to: BUILDID.
[TopLink Config]: 2008.04.17 05:43:56.487--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.Person] is being defaulted to: Person.
[TopLink Config]: 2008.04.17 05:43:56.487--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.Person] is being defaulted to: PERSON.
[TopLink Config]: 2008.04.17 05:43:56.490--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.Person.ssn] is being defaulted to: SSN.
[TopLink Config]: 2008.04.17 05:43:56.556--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.xilinx.srs.jpa.autogen.Address.streetAddress2] is being defaulted to: STREETADDRESS2.
[TopLink Config]: 2008.04.17 05:43:56.557--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.xilinx.srs.jpa.autogen.Address.state] is being defaulted to: STATE.
[TopLink Config]: 2008.04.17 05:43:56.560--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.Address.zip] is being defaulted to: ZIP.
[TopLink Config]: 2008.04.17 05:43:56.561--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.xilinx.srs.jpa.autogen.Address.streetAddress1] is being defaulted to: STREETADDRESS1.
[TopLink Config]: 2008.04.17 05:43:56.562--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String com.xilinx.srs.jpa.autogen.Address.city] is being defaulted to: CITY.
[TopLink Config]: 2008.04.17 05:43:56.629--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.Job] is being defaulted to: Job.
[TopLink Config]: 2008.04.17 05:43:56.630--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.Job] is being defaulted to: JOB.
[TopLink Config]: 2008.04.17 05:43:56.632--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.Job.jobId] is being defaulted to: JOBID.
[TopLink Config]: 2008.04.17 05:43:56.640--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.Company] is being defaulted to: Company.
[TopLink Config]: 2008.04.17 05:43:56.641--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.Company] is being defaulted to: COMPANY.
[TopLink Config]: 2008.04.17 05:43:56.643--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.Company.companyId] is being defaulted to: COMPANYID.
[TopLink Config]: 2008.04.17 05:43:56.646--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.Requirement] is being defaulted to: Requirement.
[TopLink Config]: 2008.04.17 05:43:56.647--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.Requirement] is being defaulted to: REQUIREMENT.
[TopLink Config]: 2008.04.17 05:43:56.666--ServerSession(5462872)--Thread(Thread[main,5,main])--The alias name for the entity class [class com.xilinx.srs.jpa.autogen.RequirementNumber] is being defaulted to: RequirementNumber.
[TopLink Config]: 2008.04.17 05:43:56.667--ServerSession(5462872)--Thread(Thread[main,5,main])--The table name for entity [class com.xilinx.srs.jpa.autogen.RequirementNumber] is being defaulted to: REQUIREMENTNUMBER.
[TopLink Config]: 2008.04.17 05:43:56.669--ServerSession(5462872)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer com.xilinx.srs.jpa.autogen.RequirementNumber.number] is being defaulted to: NUMBER.
[TopLink Config]: 2008.04.17 05:43:56.680--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.Set com.xilinx.srs.jpa.autogen.Company.myJobs] is being defaulted to: class com.xilinx.srs.jpa.autogen.Job.
[TopLink Config]: 2008.04.17 05:43:56.908--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.xilinx.srs.jpa.autogen.Company com.xilinx.srs.jpa.autogen.Job.myCompany] is being defaulted to: class com.xilinx.srs.jpa.autogen.Company.
[TopLink Config]: 2008.04.17 05:43:56.929--ServerSession(5462872)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private com.xilinx.srs.jpa.autogen.Company com.xilinx.srs.jpa.autogen.Job.myCompany] is being defaulted to: COMPANYID.
[TopLink Config]: 2008.04.17 05:43:56.929--ServerSession(5462872)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private com.xilinx.srs.jpa.autogen.Company com.xilinx.srs.jpa.autogen.Job.myCompany] is being defaulted to: MYCOMPANY_COMPANYID.
[TopLink Config]: 2008.04.17 05:43:56.930--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [protected java.util.Set com.xilinx.srs.jpa.autogen.SWRelease.myBuilds] is being defaulted to: class com.xilinx.srs.jpa.autogen.Build.
[TopLink Config]: 2008.04.17 05:43:56.941--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [protected com.xilinx.srs.jpa.autogen.SWRelease com.xilinx.srs.jpa.autogen.Build.mySWRelease] is being defaulted to: class com.xilinx.srs.jpa.autogen.SWRelease.
[TopLink Config]: 2008.04.17 05:43:56.942--ServerSession(5462872)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [protected com.xilinx.srs.jpa.autogen.SWRelease com.xilinx.srs.jpa.autogen.Build.mySWRelease] is being defaulted to: RELEASEID.
[TopLink Config]: 2008.04.17 05:43:56.943--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.Set com.xilinx.srs.jpa.autogen.RequirementNumber.myRequirements] is being defaulted to: class com.xilinx.srs.jpa.autogen.Requirement.
[TopLink Config]: 2008.04.17 05:43:56.944--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private com.xilinx.srs.jpa.autogen.RequirementNumber com.xilinx.srs.jpa.autogen.Requirement.myRequirementNumber] is being defaulted to: class com.xilinx.srs.jpa.autogen.RequirementNumber.
[TopLink Config]: 2008.04.17 05:43:56.945--ServerSession(5462872)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private com.xilinx.srs.jpa.autogen.RequirementNumber com.xilinx.srs.jpa.autogen.Requirement.myRequirementNumber] is being defaulted to: NUMBER.
[TopLink Config]: 2008.04.17 05:43:56.945--ServerSession(5462872)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private com.xilinx.srs.jpa.autogen.RequirementNumber com.xilinx.srs.jpa.autogen.Requirement.myRequirementNumber] is being defaulted to: MYREQUIREMENTNUMBER_NUMBER.
[TopLink Config]: 2008.04.17 05:43:56.946--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private com.xilinx.srs.jpa.autogen.Person com.xilinx.srs.jpa.autogen.Job.myPerson] is being defaulted to: class com.xilinx.srs.jpa.autogen.Person.
[TopLink Config]: 2008.04.17 05:43:56.947--ServerSession(5462872)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [com.xilinx.srs.jpa.autogen.Job com.xilinx.srs.jpa.autogen.Person.work] is being defaulted to: class com.xilinx.srs.jpa.autogen.Job.
[TopLink Config]: 2008.04.17 05:43:56.948--ServerSession(5462872)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [com.xilinx.srs.jpa.autogen.Job com.xilinx.srs.jpa.autogen.Person.work] is being defaulted to: JOBID.
[TopLink Config]: 2008.04.17 05:43:56.949--ServerSession(5462872)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [com.xilinx.srs.jpa.autogen.Job com.xilinx.srs.jpa.autogen.Person.work] is being defaulted to: WORK_JOBID.
[TopLink Config]: 2008.04.17 05:43:56.958--ServerSession(5462872)--Thread(Thread[main,5,main])--The source primary key column name for the many to many mapping [private java.util.Set com.xilinx.srs.jpa.autogen.Person.myRelations] is being defaulted to: SSN.
[TopLink Config]: 2008.04.17 05:43:56.971--ServerSession(5462872)--Thread(Thread[main,5,main])--The target primary key column name for the many to many mapping [private java.util.Set com.xilinx.srs.jpa.autogen.Person.myRelations] is being defaulted to: SSN.
[TopLink Finer]: 2008.04.17 05:43:56.984--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.SWRelease].
[TopLink Finer]: 2008.04.17 05:43:56.985--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.Build].
[TopLink Finer]: 2008.04.17 05:43:56.990--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.Person].
[TopLink Finer]: 2008.04.17 05:43:56.990--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.Job].
[TopLink Finer]: 2008.04.17 05:43:56.991--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.Company].
[TopLink Finer]: 2008.04.17 05:43:56.991--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.Requirement].
[TopLink Finer]: 2008.04.17 05:43:56.992--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver processing class [com.xilinx.srs.jpa.autogen.RequirementNumber].
[TopLink Finest]: 2008.04.17 05:43:57.001--ServerSession(5462872)--Thread(Thread[main,5,main])--end predeploying Persistence Unit test; state Predeployed; factoryCount 0
[TopLink Finer]: 2008.04.17 05:43:57.002--Thread(Thread[main,5,main])--javaSECMPInitializer - registering transformer for test.
[TopLink Finest]: 2008.04.17 05:43:57.514--ServerSession(5462872)--Thread(Thread[main,5,main])--begin predeploying Persistence Unit test; state Predeployed; factoryCount 0
[TopLink Finest]: 2008.04.17 05:43:57.518--ServerSession(5462872)--Thread(Thread[main,5,main])--end predeploying Persistence Unit test; state Predeployed; factoryCount 1
[TopLink Finest]: 2008.04.17 05:43:57.528--ServerSession(5462872)--Thread(Thread[main,5,main])--begin deploying Persistence Unit test; state Predeployed; factoryCount 1
[TopLink Finer]: 2008.04.17 05:43:57.663--ServerSession(5462872)--Thread(Thread[main,5,main])--Weaver transformed class [com/xilinx/srs/jpa/autogen/Build].
[TopLink Finest]: 2008.04.17 05:43:57.752--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.logging.level; value=FINEST; translated value=FINEST
[TopLink Finest]: 2008.04.17 05:43:57.752--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.logging.level; value=FINEST; translated value=FINEST
[TopLink Finest]: 2008.04.17 05:43:57.756--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.user; value=root
[TopLink Finest]: 2008.04.17 05:43:57.757--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.password; value=xxxxxx
[TopLink Finest]: 2008.04.17 05:43:58.824--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.target-database; value=MySQL4; translated value=oracle.toplink.essentials.platform.database.MySQL4Platform
[TopLink Finest]: 2008.04.17 05:43:58.829--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.driver; value=com.mysql.jdbc.Driver
[TopLink Finest]: 2008.04.17 05:43:58.829--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.url; value=jdbc:mysql://xcort02:3306/brotelan_test
[TopLink Finest]: 2008.04.17 05:43:58.830--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.write-connections.min; value=1
[TopLink Finest]: 2008.04.17 05:43:58.830--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.write-connections.max; value=1
[TopLink Finest]: 2008.04.17 05:43:58.830--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.read-connections.min; value=1
[TopLink Finest]: 2008.04.17 05:43:58.830--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.jdbc.read-connections.max; value=1
[TopLink Finest]: 2008.04.17 05:43:58.831--ServerSession(5462872)--Thread(Thread[main,5,main])--property=toplink.cache.type.default; value=SoftWeak; translated value=oracle.toplink.essentials.internal.identitymaps.SoftCacheWeakIdentityMap
[TopLink Info]: 2008.04.17 05:43:58.844--ServerSession(5462872)--Thread(Thread[main,5,main])--TopLink, version: Oracle TopLink Essentials - 2.0 (Build b58g-fcs (09/07/2007))
[TopLink Config]: 2008.04.17 05:43:58.867--ServerSession(5462872)--Connection(18511266)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
platform=>MySQL4Platform
user name=> "root"
datasource URL=> "jdbc:mysql://xcort02:3306/brotelan_test"
[TopLink Config]: 2008.04.17 05:43:59.462--ServerSession(5462872)--Connection(7100506)--Thread(Thread[main,5,main])--Connected: jdbc:mysql://xcort02:3306/brotelan_test
User: [email protected]
Database: MySQL Version: 5.0.51a
Driver: MySQL-AB JDBC Driver Version: mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} )
[TopLink Config]: 2008.04.17 05:43:59.463--ServerSession(5462872)--Connection(18655235)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
platform=>MySQL4Platform
user name=> "root"
datasource URL=> "jdbc:mysql://xcort02:3306/brotelan_test"
[TopLink Config]: 2008.04.17 05:43:59.498--ServerSession(5462872)--Connection(2569862)--Thread(Thread[main,5,main])--Connected: jdbc:mysql://xcort02:3306/brotelan_test
User: [email protected]
Database: MySQL Version: 5.0.51a
Driver: MySQL-AB JDBC Driver Version: mysql-connector-java-5.0.8 ( Revision: ${svn.Revision} )
[TopLink Finest]: 2008.04.17 05:43:59.544--ServerSession(5462872)--Thread(Thread[main,5,main])--sequencing connected, state is Preallocation_Transaction_NoAccessor_State
[TopLink Finest]: 2008.04.17 05:43:59.545--ServerSession(5462872)--Thread(Thread[main,5,main])--sequence SEQ_GEN: preallocation size 50
[TopLink Info]: 2008.04.17 05:43:59.938--ServerSession(5462872)--Thread(Thread[main,5,main])--file:/home/brotelan/sandboxes/HEAD/env/Misc/ReleaseTools/lib/jexcelapi/build/-test login successful
[TopLink Finest]: 2008.04.17 05:43:59.938--ServerSession(5462872)--Thread(Thread[main,5,main])--end deploying Persistence Unit test; state Deployed; factoryCount 1
[TopLink Finer]: 2008.04.17 05:43:59.990--ServerSession(5462872)--Thread(Thread[main,5,main])--client acquired
[TopLink Finest]: 2008.04.17 05:44:00.017--UnitOfWork(7318012)--Thread(Thread[main,5,main])--Execute query ReadObjectQuery(com.xilinx.srs.jpa.autogen.SWRelease)
[TopLink Fine]: 2008.04.17 05:44:00.072--ServerSession(5462872)--Connection(7100506)--Thread(Thread[main,5,main])--SELECT RELEASEID, name, version FROM SWRELEASE WHERE (RELEASEID = ?)
bind => [2]
[TopLink Finest]: 2008.04.17 05:44:00.123--UnitOfWork(7318012)--Thread(Thread[main,5,main])--Register the existing object name=Lava version=11.1 releaseId=2
[TopLink Finest]: 2008.04.17 05:44:00.146--UnitOfWork(7318012)--Thread(Thread[main,5,main])--Execute query ReadObjectQuery(com.xilinx.srs.jpa.autogen.SWRelease)
[TopLink Fine]: 2008.04.17 05:44:00.147--ServerSession(5462872)--Connection(7100506)--Thread(Thread[main,5,main])--SELECT RELEASEID, name, version FROM SWRELEASE WHERE (RELEASEID = ?)
bind => [3]
[TopLink Finest]: 2008.04.17 05:44:00.148--UnitOfWork(7318012)--Thread(Thread[main,5,main])--Register the existing object name=Magma version=12.1 releaseId=3
Lava release builds: {IndirectSet: not instantiated}
Magma release builds: {IndirectSet: not instantiated}

Google print capable?

Similar Messages

  • The "lazy question" Thread

    Bit of fun for our amusement.
    Add to the thread by QUOTING what you consider is a lazy question from a lazy poster...
    Lack of hardware or system details  wont usually count...and be careful about second language  situations.
    Rule: NO discussions in the thread.  Let the quote speak for itself and stand alone.
    Be careful it doesnt back fire on you

    Heres one for you Snarky.
    http://forums.adobe.com/thread/1440718?tstart=0
    hahahahahaha
    youre right
    more public ridicule at the expense of a first time poster
    keep it up
    this is hilarious
    I am sorry Snarky...
    ....as you are a benevolent soul, I  truly thought you would be able to help that first time poster phrase his question so we could help.  Maybe you could have helped him as well.
    Fact is you help no one in this Forum and never have.
    Your "Peon status" would actually mean you have done some work!
    Meantime..hopefully you get some benefit and wisdom from those here that willingly and ably do so unconditionally.

  • Just a flat out ******** and lazy question on my part

    alright i know how to get the videos and everything onto the ipod just fine.
    what i'm wondering is that is there a dvd ripper program for the PC that for the love of god can convert directly to mpeg4 or ipod format?!?!?!?!?!?
    i've been through just about any and everything i can think of and find i have to first rip the dvd to the harddrive in avi or wmv for the most part(there goes hour or two hours of my life) then after that i have to encode it again to mpeg4 or the ipod format for the ipod(another hour and a half)
    all i wana do is put dvd's onto my ipod so i can watch them at work cries lol
    just curious if any ya'll seen a program that will do it all at once if not i'll just keep ripping movies at the expense of 3 hours of my life spent as downtime...hmmm just like work i guess spend more time doing nothing and watching movies on the ipod than actually work...looking to be like a office space rip off WOOT!!!

    now i remember why i did use the cucusoft dvd ripper took WAY to long just tryignt o encode the southpark movie and said would take like 22 hours : / dunno if there is a program issue with the cucusoft stuff or maybe i just have a wrong settign i have no idea : / oh well

  • How Does The Playcount Sync Across iTunes and Multiple iPhones/iPods?

    Okay, this is more of a lazy question, because I don't feel like investigating myself...
    So I have an iPhone with all of my music on it. I also have an iTouch with all of my music. Occasionally I will play music on my iPhone, but primarily it's only used as an iPod when I'm driving and can plug it in.
    However, the iTouch is being used more and more to play music on the go.
    Both have the exact same library on them. They also have three smart playlists (which yes, I know they only update when synced with iTunes, since something is goofy with the smart lists) which rely on the playcount.
    I was wondering how the playcount works when synced across the iPhone to and from the iTouch and iTunes.
    Here's what I'm asking....
    I have songs A, B, C and D.
    On the iTouch, I play song A 5 times.
    On the iPhone, I play song B 5 times.
    On BOTH, I play song C 5 times.
    On my computer, I play song D 5 times.
    Now, how are they all going to sync? If I plug the iTouch in first, will it show that I played song A and C 5 times, and iTunes will update song D on the iTouch, but when I plug in the iPhone, it'll show that I didn't play song A, so it'll modify the playlist? Or when I sync the iPhone, will it update song C twice, one for the iTouch, one for the iPhone, so it'll show that I played it 10 times (correct)? Or will it only see that song C was played on one device?
    My main reason is that I want to know how I should expect my smart lists to function when being spread out over three devices...

    Play counts are updated in iTunes when you sync the device, and should then propagate. So, for song A which was played only on the iPod Touch, after those 5 plays if you sync the iPod Touch that will change the iTunes count to 5, then if you sync the iPhone after that, song A will have a play count of 5 for the iPhone's smart playlist (since syncing the iPhone will update the smart playlist at that time).

  • I'm drowning in the sea of HD export presets. Salvation wanted please..

    Hello,
    I hope the forum proves again its functionality like it did before. Cause my head's getting a little bit blurry now, from all the presets.
    So, the big issue is that I want to export a HD project to a format in which I dont get a wrongly cropped/stretched/laggy/wrong-frame-rate/... image. I know it's not that hard, but I just cannot figure it out anymore.
    I checked other topics and discussions, and found some concerning more or less the same question but I didn't find the right answer, sorry.
    Let's make a list of the settings/info:
         - OS: Windows XP service pack 3, Premiere CS4 (and AE, Photoshop, ...)
         - My captured and imported images are shot with a Canon HV40 HDV camera, and have, according to the title display in the left bottom corner of Premiere the following specs: 1440x1080 (1080p), frame rate 25 fps and PixelAspectRatio 1,3333 (HD anamorphic 1080 i guess?).
    To make sure that these are the exact specs of my video files, i tried - following the ever-returning advice of this forum user Bill hunt- importing my video files in Gspot. But, don't ask me why, Gspot only displays that my files are MPEG-2. The file extension is .m2t.
         - The Premiere CS4 preset I used to make my project is -to match the video files specifications- the HDV 1080 p(rogressive) Preset, displaying the same specs as above.
         - I do not want to export my video to youtube, I want to show the video to an audience using a beamer, which is the reason why I want to keep the quality pretty high. I don't know whether I am going to play the movie on a MAC or a Windows computer, so I need to make 2 versions (each one smoothly compatible with the according OS). Also I want a copy of the movie in HD quality to show to someone on a strong computer.
         - I live in Belgium, Europe. Does this matter in this case? I know that NTSC is the standard in the US and and Japan etc, and that PAL is the standard in Europe. But does this still matter up to this day, with the rather, uh.., global economy and quick exporting of products etc... I do not know alot about this, I hope you understand my question. I mean, what are the consequences from these standards? Do they concern your screen/monitor... ?
         - When I want to export - using Adobe Media Encoder, a HDV export preset with 1080 p, 1440x1080, P.A.R. 1,33333 and a 25 fps is NOT AN OPTION?????
    There are other export presets available of course, for example the MPEG-2 / HDTV 1080p 25 (fps) High Quality. But in the summary it goes: PAL (??), 1920x1080, 25, p . It is right that the PixelAspectRatio on this exportpreset becomes 1.0 (square), right?
    Yes, I know that the eventual size is the same, because both the pixels increase in number, but decrease in size (badly explained i know).
    Is this the export format i should use? Will my image not crop, shock, stretch.. ?
    I'm sorry, for many of you this must seem a stupid and lazy question but I can't figure out the whole system behind this, I would very much appreciate it if someone could explain.
    Thanks in advance;
    Sincerly but dazzled,
    Jef

    Hi,
    With the project all done, i'm preparing for the presentation. Managed to get my hands on a HD beamer for the night (Epason TW2000) and planning to do the presentation in HD.
    That of course managed to bring up some problems. I posted a thread which i'll repost here . Sorry for the repost, i normally do not intend to do this, but since this thread is actually about the same thing, i'd like to ask the same question to you. The end version is in AfterEffects, but that actually doesn't alter the question. It's about export:
    "I want to export my AE project of approx 30 min containing several HD files to a Blu Ray disc. The end goal is to project the video in HD quality using the Epson  EMP-TW2000 projector. This projector is HD compatible.
    To project the video I need to connect the beamer to a computer capable of playing a heavy HD file (1), OR burn the project to a BRD (2) and play it using a BRplayer.
    I prefer option 2, so my question is: which would be the preferred export preset?
    Project specs:
                        - 1920x1080 sq pix  (16:9)
                        - 25 fps
                        - my imported video files (Prem.Pro sequences) are also 25 fps and are Progressive (!)
    To export to a BRD compatible format, do i not encounter a big problem: my projectfiles are 25 fps and progressive, and I believe that the only Bluray preset dispaying 1920x1080 with 25 fps requests an INTERLACED video  (I viewed the presets found on this forum, this thread)... There is also a Progr. format, BUT then you need 30 fps (29,...).
    So, is there one dimension that can be changed without changing the content of the video, and if yes which one (either the interlacing or the fps).
    I'm not very familiar with the whole Blu-ray thing, I hope that someone can help me out."
    Please give it a look.
    Thanks,
    Jef

  • Reading integers from a .txt file and computing means

    I have a program that uses for loops to produce ten integers (1-10) are returns the average mean, geometric mean, and harmonic mean.
    Now i need to change this program to read integers from a .txt file and return the same data. Basically i need to change my for statements that are incrementing to read the text file.
    Thanks guys.

    You haven't asked a question. You haven't posted code. What are you expecting here?
    But I guess I'll take a stab at it and say you should look at the Scanner class
    http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    or BufferedReader
    http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html
    I'll never understand what makes people come to the forums, create an account, and ask a lazy question, when they could get a great answer much quicker through Google.
    http://www.google.com/search?q=java+file+input (hint: look at the second search result)

  • Changing Finder View settings to Columns - past, present and future files?

    Please, please, please, and possibly please. Could anyone explain to me what I must do to open all my folders and files in Finder as columns. I never want to see another "list" or worse, "icon" when I open a finder window. Is this possible and if so how? This is not a quick lazy question but something that I have searched and searched for over the last 5 years since I dumped Windows for Mac but so far to no avail.
    If there is any kindness out there please throw some my way and lead me out of darkness into the light of a List and Columns free Finder window/screen.
    Ta Muchly
    TeeBar

    Hi TeeBar, and a warm welcome to the forums!
    Set a permanent column view default for the Finder Desktop...
    http://www.macosxhints.com/article.php?story=20050217012732914

  • Audit Tool for tracking

    Hi, Is there any audit tool which can provide us with the details fo the transaction code being used by a particular user along with the data being accessed / activity being performed by using the said t-code.
    Kindly let me know as soon as possible.

    > 1. Use sm20 and sm21 for audit logs. Check settings via sm19.
    > 2. Run st03n for txn details and users.
    > 3. Run STAD but you will get limited historical data.
    > 4. Run table SGOSHIST.
    > 5. Run SCU3 to check table data for logged tables.
    > 6. Table CDHDR for Header entry change.
    In addition to that you can use various server (specific) logs and extended tracing capabilities, some of which will have performance impacts.
    Lets wait for more information about the use-case before answering further.
    Cheers,
    Julius
    ps: Generally, please try to answer "good" questions. Some lazy questions from repeat offenders who do not make any attempt to search on their own might be deleted.

  • Required a user Exit After Transfer Order Number is genarated?

    hi
    guys
    I need a userexit  when ever the Transfer order is generated i need to call the form .can any one help me on these
    Thanks in advance
    Moderator Message: First help yourself by doing some R&D. If you do not stop asking such lazy questions, then we will have to delete your User ID.
    Edited by: kishan P on Dec 8, 2010 11:14 PM

    Hi,
    Check the enhancement PPCO0007:Exit when saving production order.
    Exit is EXIT_SAPLCOZV_001
    Thanks,
    Ramakrishna

  • Workflow related tables. Urgent. Please help.

    Hi all,
        Could anybody please give me the list of workflow related tables ? I need to retrieve the following details.
               Type,
               Workflow Item ID,
               Workflow Item Unique ID, Text
               Creator, Created Date and Time,
               User created WI,
               Technical Status,
               Agent,
               Task ID, Task ID text,
               Element, Element Value.
    Please let me know at the earliest. Thanks in advance.

    <i>I don't think this is the right place for this, but I will give one reply.</i>
    <i>>What you think when a person is facing some issue will first read guidelines and then post.</i>
    Here is the <a href="https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement">link</a> to the guidelines. It is expected somebody first reads the guidelines and then starts posting, it is the first line in the guidelines. So I expect it also. I don't see why I should expect it from someone who has at least 30 points, and not from someone who has never posted.
    About your analogy, it doesn't work because most of the time the functional consultant needs me to create the workflow, or he is part of the same project so we need each other. In this forum I spend my own precious time answering questions, and not for the points but because I want to contribute and help others. But I expect them to have tried to 'help' themselves first.
    And as long as there is no moderator for the forum I will try to point people at the guidelines so this forum will not end up generating a lot of 'noise' and running of those who can help maybe the most (to name two: Kjetil Kilhavn and Mike Pokraka). I know they are thinking about skipping this forum because of the noise.
    <i>> Try to be a bit pragmatic. Will you do this to your peers or your junior.</i>
    Depending on the situation I will do this to my peers and juniors, mostly because they will learn more from finding things out by themselves than from pre cooked answers. And learning is one of the main objectives here.
    And my remark about the points is because you keep asking for them.
    I hope this clarifies a little why I post answers like the one I gave to this somewhat lazy question (not the first one today).
    Martin

  • Final Cut X reading from 2 different drives

    I am currently sitting at my work desk and our workflow is set up that we have all our projects on the scratch disk to work from, and the back up drive updates every night backing up the computer and hard drive. Because of this, FCPX is reading the events from the main drive and the events from the back up. Every time i open final cut the events are on a different drive.  So the first time I saw this i tried to get all the events back onto the main drive, thus duplicating the events.  Then i noticed that all the duplicated events went onto the backup drive and off the projects drive, i restarted FCPX and it reversed again! Mind you, the events and projects are still in tact on the drives in finder but I don't know for certain that I am working from an event on the actual scratch disk or from the backup drive which could create problems. 
    I understand that FCPX has it's own heirarchy within the software and i havent moved any files around within finder only from within fcpx
    these 2 pictures were taken 2 minutes from each other to show what happens.
    I am also getting this prompt every time I start FCPX
    I'm scared to delete any of the events becuase at this point I have worked on diferent projcts and i'm not sure which event those projcts were pulling from. 
    I want to know a couple things
    1.) why is this happening and how do i stop it?
    2.) in the future how do i stop FCPX from reading from the backup drive?
    3.) If I do decide to delete the duplicates and in the event a projct i was working on was pulling from that particular duplicate, will it be easy to re-link the media I used?
    Thanks in advance for the responses. this has become very frustrating.
    Steve

    Thanks so much for this help.  It definitely gave me a starting point and a workaround.  However, I really want to know why FCPX is reading from the backup drive, is there anyway to just tell it to ignore the drive without mounting it?  I could just remount the drive before i leave for the day but thats something that i could forget to do. as in yesterday when i got 20 minutes into my drive home and realized i forgot to reconnect. 
    I know this seems like a "laziness" question but it really does worry me that final cut gets confused as to what projects are on what drives when both are connected.  It wouldn't worry me as much if both drives showed an identical projects list, that would make sense and i would have ignored it from the start.  But the fact that every time i restart final cut the projects are randomly visible or not visible on either drive really makes me worrisome.

  • My CS4 on 2 machines?

    Sorry all...lazy question follows :
    Can I run CS4 on 2 machines?
    I was not going to do this ...
    ...but I know that sometime soon after next week... when  my new 64 bit Windows 7 custom built machine is delivered and I have sorted Windows 7 and new hardware out... I will want to try CS4 on it so I can compare and test performance etc.
    Can I do this with out removing it from current machine ( which I will not do under any circumstances) and install it on the new machine?

    From Adobe's KB:
    Can I use my software on two computers?
    If you own, or are the primary user of, a single-user or volume license Adobe product that is installed on a computer at work, you can also install and use the software on one secondary computer of the same platform at home or on a portable computer. However, you may not run the software simultaneously on both the primary and secondary computers.
    http://kb2.adobe.com/cps/195/tn_19592.html
    So, I think the answer is yes.  If you want to be real anal you could deactivate on the old machine then re-activate after testing on the new machine.  But this policy allows two machines if not operated at the same time.

  • Connected clips cannot have transitions error....what is it ?

    I'm trying to break apart a compound clip and it is giving me an error......' The selected item contains at least one transition , if you click break apart , the transitions will be removed from the resulting connected clips .......
    all compound clips have transitions ...big deal....what does this mean then??

    We all are unknown to each other,many don't even have real names....this arguement can go on and on without any responsibility of decorum ....I will in future try to find answers to questions on other forums before coming here,
    it's just a kind point of view that everybody who is thinking that I'm asking questions just to have fun and not searching is wrong because I do that..15-20 questions till now cannot teach you FCPx where I have completed an entire project with fx, titles and music..infact I always type the question first on google...
    Secondly this episode has taught me a very big lesson ...that modesty is the most stupid trait....till my last post I was having long discussions with the best people on this forum and the way they were discussing things with me there were times when they realized that certain things were new problems , certain problems couldn't even be solved ....as nobody had an answer to it....but all this started after my modest reply of saying 'I don't know anything' before which there were 16 and 11 replies to my posts and some guys have gone out of the way to find work arounds for me .....so infact you are abusing their participation in my posts by saying that my questions were lazy questions, I posted a question with the least number of words only when I felt every search in google comes in the form of a long indirect confused question and nobody has written a smaller to the point problem....now no matter if you think I shouldn't have done that but I know lakhs of people will at once get to the exact problem...Thanks for your help.I have seen the posts of you all and seen there are several points that have been raised which I started learning fcpx with and can help those genius people.....I will keep in mind what you said and take extra initiative to find out everything from elsewhere before shattering egos here.But for your help in am better informed than before so thanks.Just one request if you don't want plz don't answer to my questions but STOP insulting people who were were a part of those lazy questions why are you pulling everybody forcefully in your boat ?.It is funny that that the interest which a particlar group had in a problem is contineously being tagged as generosity and kindness of helpless,employed , forced , bound social service guys....it is not so ...they answered because the question excited them...don't glorify your prejudice by firing guns from their shoulders..they can take care of themselves,don't make gangs here, talk alone if you have a point.....thankyou.

  • Package hierarchy depth limitation

    Consider the following:
              Version of WebLogic Server and service pack: 5.1.0 SP5
              Operation system: Solaris 2.7
              JDK version: Solaris_JDK_1.2.2_05a
              I try to instantiate a bean in a JSP which is in a package more than two
              levels deep,
              e.g. in package inventa.clareon.netdaemon.entityBeans
              When I try this, I get the following error:
              Error 500--Internal Server Error
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.5.1 500 Internal Server Error
              The server encountered an unexpected condition which prevented it from
              fulfilling the request.
              The same thing happens after if I move the class up to
              inventa.clareon.netdaemon, change the package declaration in the .java
              source to reflect the new package name, recompile and change the class
              spec in the jsp:useBean directive in the .jsp source to reflect the new
              location.
              However, if I change it to two levels deep (doing all of the above) to
              inventa.clareon, it works fine.
              It looks like there is a package hierarchy depth limitation with
              WebLogic 5.1.0 SP5. Has anyone else seen this problem or does anyone
              have any workarounds?
              

    Right, but what I was wondering is if an object in a given package that is in a subdirectory (com.company.levelone.leveltwo) of another given package (com.company.levelone) is accessible from that package (com.company.levelone).
    But, it was a lazy question, since I could have figured it out for myself, given some time to actually write up the files. Which I did. And for posterity, here is what I discovered:
    Just because a package (com.company.levelone.leveltwo) is "within" another package (com.company.levelone), doesn't make those objects available to that package (com.company.levelone objects cannot just access objects in com.company.levelone.leveltwo). Each is technically a separate package even though they may share a directory hierarchy, and each must be imported into the other.
    Of course, this all makes sense when you ask yourself -- do the package declarations at the top of the file match? If not, then they are not in the same package.
    (PS: this is a self-observation, so if I'm wrong, please correct me!)

  • [SOLVED] xorg update has broken nvidia-173xx driver

    Hi,
    I've been using arch for around 2 and a half months on 2 computers (a dell Inspiron 2200 and an old home built pc). So far I've been able to figure out most things myself.  However, following today's xorg update x seems to be broken. My laptop, which does not use nvidia, seems to be fine. On the pc i installed the i686 version and am running kde 4.5.1
    I have reinstalled nvidia-173xx and nvidia-173xx-utils, and run nvidia-xconfig but this has not helped any.
    Although the installation is carried out there is an error stating:
    ERROR: Module nvidia does not exist in /proc/modules In order to use the new nvidia driver, exit xserver and unload it manually
    A google search on the above error didn't advance me any further, either.
    I have also waited for today's kernel update but that hasn't seemed to fix things.
    If I run "startkde" i get an error message stating that it can't connect to the x server.
    "startx" says much the same only more verbose.
    /var/log/Xorg.0.log has the following information :
    dlopen: /usr/lib/xorg/modules/drivers/nvidia_dvr.so undefined sym$
    failed to load /usr/lib/xorg/modules/drivers/nvidia_dvr.so
    unloadable module "nvidia"
    failed to load module "nvidia" (loader failed, 7)
    I've done a lot of esearch but can't find any solutions to my issue. The following thread seems to be related :
    https://bbs.archlinux.org/viewtopic.php?id=103716
    but i can't seem to find an answer there either.
    Any help would be appreciated.
    Cheers
    Last edited by rabid_works (2010-09-29 19:32:42)

    ok, went to downgrade using
    #pacman -U ...
    but i have yet another error due to a conflict between files :
    xorg-server: /usr/lib/xorg/protocol.txt is already present in the file system
              xorg-server: /usr/share/man/Xserver.1.gz is already present on the file system
              xorg-server; /usr/share/xkb/README.compiled is afready present in the file system
    is it possible to safely force the installation?
    sorry if thatś a lazy question but I've been looking at this for so long that i can't fathom the idea of futher searching.
    EDIT: ok, i had a break and realised it'd be safer to simply rename and the delete the problematic files. The downgrade went fine. I have X back.
    thanks for the help.
    Last edited by rabid_works (2010-09-29 18:52:27)

Maybe you are looking for