GNOME 2.26 has released

The GNOME project is proud to release this new version of the GNOME desktop environment and developer platform. Among the hundreds of bug fixes and user-requested improvements, GNOME 2.26 has several highly visible changes: the inclusion of a new disc burning application, simpler file sharing and a generally smoother user experience. Learn more about GNOME 2.26 through the detailed release notes.
For more news, tech tutorials and tech information click here
Filed under: Linux, Open Source, Open Source News, gnome | Leave a Comment
Tags: gnome, gnome 2.26, gnome 2.26 release notes, gnome 2.26 released, latest gnome, linux gnome
Get a free Ubuntu 9.04 CD
The next ubuntu stable version is going to be released on 23rd April 2009.If you want to order your free CDS use the following linkhttps://shipit.ubuntu.com/
If you want to know new features in ubuntu 9.04 as follows
* Linux kernel version 2.6.28
* A new notification system
* Faster boot times
* GNOME 2.26 desktop environment
* Community desktop themes and brand new artwork
* Evolutionary EXT4 filesystem
* Support for many new devices (wireless, webcams, mobile phones, etc.)
Filed under: Uncategorized | Leave a Comment
Tags: free ubuntu cd, Ubuntu, ubuntu 9.04, ubuntu 9.04 new features
Ubuntu 9.04 Coming Soon

Its almost ready
Here is what Ubuntu team has to say
Upgrading from Ubuntu 8.10
To upgrade from Ubuntu 8.10 on a desktop system, press Alt+F2 and type in “update-manager -d” (without the quotes) into the command box. Update Manager should open up and tell you: New distribution release '9.04' is available. Click Upgrade and follow the on-screen instructions.
To upgrade from Ubuntu 8.10 on a server system: install the update-manager-core package if it is not already installed; edit /etc/update-manager/release-upgrades and set Prompt=normal; launch the upgrade tool with the command sudo do-release-upgrade; and follow the on-screen instructions.
Download
Get it while it’s hot. ISOs and torrents are available at:
http://releases.ubuntu.com/releases/9.04/ (Ubuntu Desktop, Server, and Netbook Remix)
http://releases.ubuntu.com/releases/kubuntu/9.04/ (Kubuntu)
http://cdimage.ubuntu.com/releases/9.04/rc/ (Ubuntu MID)
http://cdimage.ubuntu.com/edubuntu/9.04/rc/ (Ubuntu Education Edition)
http://cdimage.ubuntu.com/xubuntu/releases/9.04/rc/ (Xubuntu)
http://cdimage.ubuntu.com/ubuntustudio/releases/9.04/rc/ (UbuntuStudio)
http://cdimage.ubuntu.com/mythbuntu/releases/9.04/rc/ (Mythbuntu)
http://cdimage.ubuntu.com/netboot/9.04/rc/ (Ubuntu ARM)
Filed under: Uncategorized | Leave a Comment
Tags: Ubuntu, ubuntu 9.04, ubuntu latest version
To open the DBMS Output window in TOAD, go to View > DBMS output.
To test if it is working or not use the following procedure in TOAD sql editor and execute it.

DECLARE
tempvar NUMBER;
BEGIN
DBMS_OUTPUT.PUT_LINE(‘hello world’);
END;
Have a look at the image displayed under. Write the SQL mention above into an SQL editor and press Execute Statement button after selecting the entire sql.

Once you execute the above sql, open the output window to see the output. See the image below.

Filed under: Oracle, TOAD, Tutorials | Leave a Comment
Tags: dbms output, TOAD, X dbms_output, X dbms_output.put_line, X oralce output
This is how you can create an oracle sequence
Syntax
CREATE SEQUENCE sequence_name
MINVALUE VALUE
MAXVALUE VALUE
START WITH VALUE
INCREMENT BY VALUE
CACHE VALUE;
A Demo
CREATE SEQUENCE my_seq
MINVALUE 1
MAXVALUE 999999999999999999999999999
START WITH 1
INCREMENT BY 1
CACHE 20;
– If you don’t provide MAXVALUE its default value is 99999999999999999999999999
Continue reading ‘How to create and use an Oralce Sequence’
Filed under: Oracle, Tutorials | Leave a Comment
Tags: Increment and decrement an oracle sequence, Oracle, Oracle sequence
Best Spring MVC Tutorial
This is one of the best Spring MVC tutorials. Although I am trying to write my own but I am not getting some spare time to do this job:p till than this tutorial will fulfill your desires.
It includes
-
Setup
-
Hello World
-
Model View Controller
-
Form Processing
-
Form Validation
-
Dependency Injection (Inversion of Control)
So click here and enjoy the tutorial
Filed under: Programming, Spring MVC | Leave a Comment
Tags: spring frame, Spring MVC, spring mvc tutorial
I had a situation, I wanted to find out all records in a single database table which occur more than once.
In one of the database tables there were some records that were repeating and I wanted to get all those records, how many times were repeating etc.
So here is the shortened version of my database table
CREATE TABLE HD_DESIG
(
DESIG_ID NUMBER(10) NOT NULL,
DESGIG_ORDER NUMBER(2),
DESIG_ENAME VARCHAR2(200 BYTE),
DESC_EN VARCHAR2(300 BYTE),
)
First we will group all the same records and find the group count
SELECT HD_DESIG.desig_id,COUNT(*) cnt FROM HD_DESIG GROUP BY HD_DESIG.DESIG_ID;
Secondly, we will get only those records that have a count greater than one – only those records that exist more than once.
SELECT desig_id FROM
(SELECT HD_DESIG.desig_id,COUNT(*) cnt FROM HD_DESIG GROUP BY HD_DESIG.DESIG_ID)
WHERE cnt > 1;
Now I’ll combine the above queries along with some more changes and we will get the information of all those records that are repeating.
Here is the whole query.
SELECT * FROM HD_DESIG WHERE HD_DESIG.DESIG_ID IN
(
SELECT desig_id FROM
(SELECT HD_DESIG.desig_id,COUNT(*) cnt FROM HD_DESIG GROUP BY HD_DESIG.DESIG_ID)
WHERE cnt > 1
)
Filed under: SQL | Leave a Comment
Tags: duplicated records, get similar records in database, SQL
A very comprehensive video editing software comparison is posted on wikipedia.
Categorized into general information, features, system requirements,output options and even target market make this article most comprehensive and useful.
The article also mentions the open source and free video editing software as well. Unix users will not be disappointed.
You can find the article here
Filed under: Vido Editing | 1 Comment
Tags: open source video editing software, video editing, video editing software, video editing software comparison
Its been pain to solve the windows-1256 character set (Arabic) problem. Many times when my JSP form is submitted all the Arabic in fields turn to “?????” and the original Arabic text is lost.
I have one line solution for this. But I can not assure you that it will work in all scenarios. But it may prove helpful.
If you are showing Arabic on your form, then you may already be doing this
response.setContentType("text/html;charset=windows-1256");
response.setHeader("Content-Language" , "ar");
You can place the following line at the top of the page which could solve your problems.
request.setCharacterEncoding("windows-1256");
Try it and if you have any questions, leave comments.
Filed under: JSP, Programming | Leave a Comment
Tags: Arabic question mark problem, arbic turned to ????, JSP form and Arabic question marks problem, windows-1256 character
Recent Entries
- GNOME 2.26 has released
- Get a free Ubuntu 9.04 CD
- Ubuntu 9.04 Coming Soon
- How to set and view DBMS OUTPUT of Oralce in TOAD
- How to create and use an Oralce Sequence
- How to deploy web project on tomcat?
- Best Spring MVC Tutorial
- Get duplicated records in a database table
- Comprehensive video editiing software comparison
- Arabic converted to question marks “????” on JSP form
- Simple Email Form validation with Javascript
Categories
- all about maven (1)
- Eclipse (1)
- Environment variables in Linux (2)
- gnome (1)
- Javascript (4)
- JDeveloper (1)
- JSP (1)
- Linux (7)
- Maven (2)
- Maven Installation (2)
- MySQL (1)
- Open Source (1)
- Open Source News (1)
- Oracle (2)
- Programming (4)
- Remote Desktop (1)
- Spring MVC (1)
- SQL (1)
- TOAD (2)
- Tomcat (4)
- Tutorials (18)
- Ubuntu (5)
- Uncategorized (2)
- Vido Editing (1)
- Windows (1)



