ASP.Net Tutorials

Connect to a remote SQL server using Server Studio Express

How to install Microsoft SQL Server Studio Express

Microsoft SQL Server Studio Express can be downloaded free of charge from this link. If you are using Windows 32 bit download the file SQLServer2005_SSMSEE.msi and for Windows 64 bit download SQLServer2005_SSMSEE_x64.msi.

How to connect to the SQL server from your hosting/network provider

How to create a table

varchar is a variable length which cannot hold unicode characters, it uses only one byte storage per character.
nchar or ntext is fixed-length which can hold unicode characters, it uses two bytes storage per character.

That's it. The table has been created on the remote server and can be used to add, display, edit or remove records using ASP.Net, classic ASP and any other programming language.

How to create a unique identifier and automatically increase the number

If you want to create a unique identifier and automatically increase the number as you add new records, open the Column Properties and change the settings as shown in the example below:

 

Create a table with a query

Another quick way to create a table is by executing a query.

ASP Tutorials
Other Tutorials