|
Technical Blog
Enable root logon to Ubuntu Desktop
By default, root user cannot logon to Ubuntu Desktop using GDM.
Following are the steps to enable the root logon:
- Navigate to System >> Administration >> Login Window.
- On the Login Window Preferences window select Security Tab
- On the Security tab check the empty checkbox labelled 'Allow local system administrator login'.
- Click on Close button.
- Navigate to System >> Administration >> Users and Groups.
- On User Settings window select root user then click on Unlock button.
- On Authenticate window enter password of the the user that you are logged on as.
- Select root user and click on Properties button.
- On Account 'root' properties window enter root password of your choice then click OK
- Reboot the system and now you can logon as root user.
Using Oracle SQL Developer to connect SQL Server 2005
I do admit that I am not a great fan of Microsoft technologies, but one of my clients is using SQL Server 2005 as a backend to some applications running on Weblogic 8.1.
Till now I have been using Windows VM to work on SQL Server 2005 and rest of the tools like Weblogic Workshop, Eclipse, etc. on Linux.
After a lot of googling I finally figured out how to connect SQL 2005 server from SQL Developer.
Here is how:
- Download jTDS - SQL Server and Sybase JDBC driver (jtds-1.2.2-dist.zip)
- Unzip the file and copy jtds-1.2.2.jar from extracted folder to {sqldeveloperhome}/jdbc/lib folder.
- Open SQL Developer.
- From Menu click Tools >> Preferences...

- In Preferecnes window select Database >> Third Part JDBC Drivers

- Click on Add Entry and select jtds-1.2.2.jar from {sqldeveloperhome}/jdbc/lib folder.
- Click OK
- Now click on New Connection icon -- the tabs for SQL Server and Sybase connection are added next to Oracle Connection tab. Now all we need is the SQL Server details.

- Easy! :)
ORACLE XE: “ORA-12519, TNS:no appropriate service handler found”
I spent a lot of time to crack this one. I am using Oracle XE 10g. Quick fix is to run following statement as SYSDBA:
"ALTER SYSTEM SET PROCESSES=150 SCOPE=SPFILE;"
You can run this statement in SQL Developer connecting as System user.
|