UbuDSL is a tool that helps you configure the ADSL connection using a USB modem on the Linux Operating System. Currently supported distributions are openSUSE 10.3+ and Ubuntu 8.04+. It is designed in the way to minimize user actions. All you have to do is simply to run the application, choose a predefined settings or customize you own options.
Please Refer the following URL to download the UbuDSL tool,
http://www.ubudsl.com/en/download.php
Monday, March 30, 2009
Wednesday, March 11, 2009
How to repair the GRUB..
I have been using both Windows XP and Ubuntu 8.04 as the operating systems in my laptop. But after formatting the Windows XP OS of my laptop, I had no way of accessing the ubuntu partition. I was wondering whether I will have to reinstall ubuntu in my laptop. Then I found the solution. The following steps will lead you to repair the GRUB and reaccess the unseen ubuntu partition, if you have the same problem.
1. Boot the PC or Laptop with an Ubuntu Live CD.
2. Open a Terminal
3. Type the following command..
sudo grub
4. Type the following followed by the TAB key
root (hd
5. This will show the list of physical drives.
6. Type the number of the drive you installed ubuntu on,.
7. If you are not sure about the ubuntu installed drive add a ‘,‘ after the number and press theTAB key again.
root (hd0,
8. This will enable you to see something like following,
grub> root (hd0,
Possible partitions are:
Partition num: 0, Filesystem type unknown, partition type 0×7
Partition num: 1, Filesystem type is ext2fs, partition type 0×83
Partition num: 2, Filesystem type unknown, partition type 0×7
Partition num: 3, Filesystem type is fat, partition type 0xb
Partition num: 4, Filesystem type is fat, partition type 0xb
9. The ext2fs partition is the one Ubuntu is installed partition of your machine.
10. The type the following with replacing 1 with the ubuntu installed partition num of your mechine.
root (hd0,1)
11. Finally type the following, replacing hd0 with the physical drive Ubuntu is installed
setup (hd0)
This worked out fine for me. Hope it will work with you too. Let me know if there are any issues.
Cheers!!
Tuesday, March 10, 2009
Copy a table from one database to another in SQL Server 2005
If you have a table in a database and you would like to copy the table to another database, use this query:
SELECT * INTO AdventureWorks.dbo.CustomersTemp FROM Northwind.dbo.Customers
Just remember that using this query will only transfer the schema and data. It does not transfer the indexes, foreign keys, statistics etc.
If you want to transfer all the objects from one database to another, open Sql Server Management Studio > Right click on your database > All Tasks > Generate SQL Scripts. Then run these scripts against the new database.
Transfer both schema and data
To copy both data and schema, use the Microsoft SQL Server Database Publishing Wizard 1.1. This tool works for both SQL 2000 and SQL 2005 and generates a single SQL script file which can be used to recreate a database (both schema and data).
SELECT * INTO AdventureWorks.dbo.CustomersTemp FROM Northwind.dbo.Customers
Just remember that using this query will only transfer the schema and data. It does not transfer the indexes, foreign keys, statistics etc.
If you want to transfer all the objects from one database to another, open Sql Server Management Studio > Right click on your database > All Tasks > Generate SQL Scripts. Then run these scripts against the new database.
Transfer both schema and data
To copy both data and schema, use the Microsoft SQL Server Database Publishing Wizard 1.1. This tool works for both SQL 2000 and SQL 2005 and generates a single SQL script file which can be used to recreate a database (both schema and data).
Subscribe to:
Posts (Atom)