SQL Server 2008

How to insert a new table into a SQL Server database diagram

Developers can add a table to their database diagram to edit its structure or relate it to other tables in their diagram.. When Developers working with SQL Server “Denali”, MS SQL Server 2008 R2 and MS SQL Server 2005 want to insert a new table into a database diagram, they should follow the next steps:

1. Make …

Learn more

How to automatically size selected tables in SQL Server diagrams

Developers fit tables in their database diagram to the smallest size that shows all fields. When developers working with SQL Server “Denali”, MS SQL Server 2008 R2 and MS SQL Server 2005 want to automatically size selected tables in diagrams, they should follow the next steps:

1. Select the table(s) they want to resize.

2. Right …

Learn more

How to create a clustered unique index in SQL Server databases

Developers can create a clustered index in Microsoft SQL Server databases. In a clustered index, the physical order of the rows in the table is the same as the logical (indexed) order of the index key values. A table can contain only one clustered index. When Developers working with SQL Server “Denali”, MS SQL Server 2008 R2 and …

Learn more

How to add related tables to a diagram in SQL Server

Developers can add a table to their database diagram to edit its structure or relate it to other tables in their diagram.. When Developers working with SQL Server “Denali”, MS SQL Server 2008 R2 and MS SQL Server 2005 want to add related tables to a diagram, they should follow the next steps:

1. Add the …

Learn more

How to create an Insert results queries in SQL Server Query Designer

Developers copy rows from one table to another or within a table using an Insert Results query. When they create an Insert Results query, they specify:

– The database table to copy rows to (the destination table).

–  The table or tables to copy rows from (the source table). The source table or tables become part …

Learn more

How to identify a SQL Server Express instance

DBA or Developers can use the sqlcmd utility to determine which edition of SQL Server is used for a currently-running instance. Microsoft SQL Server 2005 Express Edition instances display “Express Edition.” DBA or Developers should follow the next steps to determine which edition of SQL Server is used:

1. Connects to an instance of SQL Server by using …

Learn more

How to stop the SQL Server Browser service from the command prompt.

DBA or Developers should follow the next steps:

1. On the Start menu, click Run.

2. In the Run dialog box, type:

cmd

3. From the command prompt, type:

net stop sqlbrowser.

Related TutorialsHow to create a new query in SQL Server Query and View Designer
How to modify the identity properties for a column …

Learn more

How to start the SQL Server Browser service from the command prompt

DBA or Developers should follow the next steps:

1. On the Start menu, click Run.

2. In the Run dialog box, type:

cmd

3. From the command prompt, type:

net start sqlbrowser.

Related TutorialsHow to remove a table or table-structured object in the Diagram or SQL Pane in SQL server
How to assign an XML …

Learn more

How to start the SQL Server Browser service from the GUI

DBA or Developers should follow the next steps:

1. On the Start menu, right-click My Computer, and then click Manage

2. In Computer Management, expand Services and Applications, and then click Services.

3. In the list of services, double-click SQL Server Browser.

4. In the SQL Server Browser Properties …

Learn more