As all my tablespaces were more or less full I found the following command useful:
alter tablespace temp add tempfile 'C:\ORACLEXE\ORADATA\XE\TEMP1.DBF' SIZE 500Musing a different path.
I found this and much more helpful info on this page
Clear step by step descriptions of setting up and completing various IT tasks, explained and documented just as they've been done
alter tablespace temp add tempfile 'C:\ORACLEXE\ORADATA\XE\TEMP1.DBF' SIZE 500MRan into an interesting error this afternoon. I have a base class which is abstract and when i deployed my app I received the above error.
The fix is simple add abstract=”true” to your bean defination:
Hey Presto!
Spent Yesterday and today drawing up a schema for www.justcars.ie Ireland’s newest and hottest place to source your car.
To create this schema I wanted to get hibernate generate it via the POJOs I create. I am using annotations. So here is what i did:
Step One:
Create the POJO:
@Entity
public class Manufacteur {
@Id
private Integer manufacteurlId;
…..
}
Make sure you import javax.persistence.*; & not the more intuitive sounding hibernate one .
Step Two:
I am using a hibernate.cfg.xml for neatness:
Change the pieces in bold as appropriate.
Step Three servlet:
Ensure your session factory bean if you are using annotations is using the AnnotationSession otherwise you will get an “Annotation Instance required ” exception.
Point the session factory to your hibernate.cfg.xml
Step Four:
Depoly & hey Presto hibernate is creating your schema! ![]()
Having this problem! It’s caused me untold trouble. Anyway the problem is actually in the spring distribution. Unzip the commons-attributes-compiler.jar, open the MANIFEST.MF and remove lines with a space and text.
Example:
ant-Implementation-URL: http://www.ibiblio.org/maven/ant/jars/ant-1.5.
jar
Should be replaced with:
ant-Implementation-URL: http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar
There is quite a few of these to be fixed.
Save the file.
Rezip and ensure the .jar extension
Hey Presto!
Trying to run a JUnit test case & getting this error?
Right click on the folder in which you have located the test case and under build path - select use as source folder
Hey Presto!
Ok so….. this is a plugin for eclipse that makes your GUI look all fancy..
Here is the link to its homepage:
https://liquidlnf.dev.java.net/
Step One:
Extract the liquid source jar to a location of your choice.
Step Two:
Import the source files into your project.
Step Three:
You will notice that the class SwingUtilities2.java is missing, you need to create it in your com folder. Create the directory structure com.sun.java.swing and place the class located here into it .
Step Four:
Simply import com.birosoft.*; into your main program.