SQL Create Database Statement

Submitted by admin on

Besides creating the database from the DBMS software like Oracle, MyQL, Microsoft Access etc. We can also create database with the query language. It is as simple as writing a SELECT, INSERT, UPDATE, DELETE Statement.

Creating a database using query language is very useful if for example you deploy your application to a computer that doesn’t have a database yet.

We can create a new database with the following syntax

SQL Create Database Syntax

MS Access 2010/2007 database to manage SQL Server scripts

Submitted by magicscreen on
This application allows the user to manage SQL Server scripts. It also allows the user to place SQL Server .SQL scripts in a "Run Once" Windows folder or in a general "Run Whenever" Windows folder. The scripts can be prioritized so they run in a specific order, if necessary. The program works with Windows Logon as well as SQL Server Logon.

SQL LEFT JOIN Keyword

Submitted by admin on

There are times when you want to retrieve all data from one table even there is no matching record from both tables. Unlike SQL INNER Join, SQL LEFT Join will still show you the result from the left table or the first table. SQL INNER Join as discussed in the previous chapter will only show records that match on both tables based on the column you specified.

How to Enable Remote Connection on SQL Server

Submitted by admin on

In this tutorial I will teach you on how to enable remote connection on SQL Server. I will use SQL Server 2005 Express Edition on this tutorial. However, this is also applicable to any version of SQL Server. The only difference is the GUI for different kinds of SQL Server version.

This tutorial is very useful if you want to access your SQL Server database from other computer and you want to connect two or more computers from your network.