code | description |
---|---|
C | check not null |
P | primary key |
U | unique |
R | referential, foreign key |
v | view with check |
o | read only on view |
Oracle reference documentation
>>>ITwacht<<<
code | description |
---|---|
C | check not null |
P | primary key |
U | unique |
R | referential, foreign key |
v | view with check |
o | read only on view |
Charles Babbage designed the Analytical Engine, a mechanical computer, in the 19th century. Only a partial trial model was built when he died in 1871:
The difficulty ... induced me to seek some method by which I might at the glance of the eye select any particular part, and find at any given time its state of motion or rest, its relation to the motions of any other part of the machine, and if necessary trace back the sources of its movement through all its successive stages to the original moving power.Babbage later stated:
Without the aid of this language I could not have invented the Analytical Engine; nor do I believe that any machinery of equal complexity can ever be contrived without the assistance of that or some other equivalent language.In the paper he uses a clock as an example:
Astah (formerly Jude) is a uml tool that works very well, I only have some minor remarks about the interface:
IMy printer showed me this error message: Canon pixma mp510 ink absorber almost full. Please contact the service center.
Here's how I dealt with it:
Jshell (developed in project Kulla) is a java shell allowing you to type java instructions at the shell prompt and have them executed.
-> 2 + 2
| Expression value is: 4
| assigned to temporary variable $1 of type int
-> double volume(double radius) {
>> return 4.0 / 3.0 * PI * cube(radius);
>> }
| Added method volume, however, it cannot be invoked until method cube(double), and variable PI
are declared
After upgrading to windows 10 my password was not accepted !?
Issue: Windows had changed my default keyboard layout to US/Eng, which did not match my keyboard.
This is a setting you can change in the right bottom corner of the login screen, issue solved:
Nice Hybris performance/design post.
Given that the original blog is inactive I'm copying and structuring some of the content below:
You can find wikis for some popular software development processes (UP, Scrum, XP...) at the epf wiki homepage. Any team member participating in the Unified Process project can use the wiki to find guidelines, templates etc to participate in the process.
Whatever process you want to use, you probably want to customise the process to the way you apply it at your company.
The epf (Eclipse Process Framework) composer is an Eclipse based standalone application, which allows you to build your own version of OpenUp or another software development process (e.g. Scrum) you use.
The Getting Started section of the epf site has a fine installation guide, though it's a tad out of sync with the site itself.
Here are the steps I followed to get it running:
I have a little old webapp connecting to a DB using a glassfish ConnectionPool.
This used to run fine but on a more recent glassfish (4.0) I do net get a good datasource from Glassfish, resulting in a Table/View <name> does not exist error message (the message is a general symptom for a failed DB connection, which can have many other reasons).
The problem exists if I configure the DataSource in web.xml and also if I inject it using @Resource.
The solution is to explicitly map the application reference to the JNDI name in WEB-INF/glassfish-web.xml:
<resource-ref> <res-ref-name>jdbc/theDB</res-ref-name> <jndi-name>jdbc/theDB</jndi-name> </resource-ref>