Wednesday, February 3, 2010

How to create Dynamic Menu in ASP.NET 3.5

I find a very good article about how to create a database driven hierarchical menu with only a few lines of code using ASP.NET 3.5. This is a tutorial with powerful and flexible design.
Here it is!


Monday, July 27, 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).

Wednesday, May 27, 2009

How to modify your MX records for Google Apps Mail / Gmail?

Once you sign up your domain for Google Apps, you will have to change the MX records for your domain in order to use it in Gmail.

If you are using cPanel, this can be easily done by using the MX Entry option. There find the domain you will be pointing to Google Apps Mail and delete all of its MX records.

Then add the following MX records with the corresponding priority for your domain:

Priority: 1 to: ASPMX.L.GOOGLE.COM

Priority: 2 to: ALT1.ASPMX.L.GOOGLE.COM

Priority: 3 to: ALT2.ASPMX.L.GOOGLE.COM

Priority: 4 to: ASPMX2.GOOGLEMAIL.COM

Priority: 5 to: ASPMX3.GOOGLEMAIL.COM

Priority: 6 to: ASPMX4.GOOGLEMAIL.COM

Priority: 7 to: ASPMX5.GOOGLEMAIL.COM

The above instructions are in full compliance with the official Google Apps instructions and have been adapted to work with cPanel. They will require 24 hours to propagate and take effect. After that your mail will be handled exclusively by Google Apps Mail.

If your host does not use cPanel, you will have to find another way to change the MX records to Gmail. Still, the changes will be very similar to the above and the DNS records will be the same.

Gmail has proven to provide the best mail experience even to the most demanding users. That's why all web hosts should provide easy means to change the MX records to Gmail.