Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit bac91ba

Browse files
committed
fix links related to removed files
1 parent 0d9990a commit bac91ba

23 files changed

Lines changed: 42 additions & 67 deletions

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41480,6 +41480,11 @@
4148041480
"redirect_url": "/sql/ssdt/sql-server-data-tools.md",
4148141481
"redirect_document_id": false
4148241482
},
41483+
{
41484+
"source_path": "docs/ssdt/connected-database-development.md",
41485+
"redirect_url": "/sql/ssdt/sql-server-data-tools.md",
41486+
"redirect_document_id": false
41487+
},
4148341488
{
4148441489
"source_path": "docs/ssms/about-dialog-box.md",
4148541490
"redirect_url": "/sql/ssms/download-sql-server-management-studio-ssms",

docs/ssdt/extract-publish-and-register-dacpac-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ In the **Register Data-tier Application** dialog box, specify the properties of
5757
Unregistering allows you to remove the metadata for a registered data-tier application from the instance. Unregistering does not delete the registered database.
5858

5959
## See Also
60-
[Connected Database Development](../ssdt/connected-database-development.md)
60+
[Manage Tables, Relationships, and Fix Errors](../ssdt/manage-tables-relationships-and-fix-errors.md)
6161

docs/ssdt/how-to-browse-objects-in-a-sql-server-database-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ The SQL Server Object Explorer in Visual Studio now contains a dedicated Project
2222
3. In **SQL Server Object Explorer**, expand the **Projects** node to see all the current SQL Server database projects in your solution under the **Projects** node.
2323

2424
## See Also
25-
[Connected Database Development](../ssdt/connected-database-development.md)
25+
[Manage Tables, Relationships, and Fix Errors](../ssdt/manage-tables-relationships-and-fix-errors.md)
2626

docs/ssdt/how-to-change-target-platform-and-publish-a-database-project.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ You can change the target SQL Server version for your SQL Server Data Tools (SSD
1818

1919
SSDT also makes this task simple by being aware of your target platform and automatically detecting any error in your code (for example., when you are using unsupported features for a project that is going to be published to SQL Azure).
2020

21-
> [!WARNING]
22-
> The following procedures utilize entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) and [Project-Oriented Offline Database Development](../ssdt/project-oriented-offline-database-development.md) sections.
23-
2421
### To change a project's target platform
2522

2623
1. Right-click your project in **Solution Explorer** and select **Properties**. Click the **Project Settings** tab on the left to access the **Project Settings** property page.

docs/ssdt/how-to-clone-an-existing-database.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ This task uses some of the steps you learned in previous procedures to create a
1515

1616
By using these steps, you can easily create a development or test database from a production database with identical schema and data. You can then continue to develop the test database in a connected mode, or create a database project for offline development and testing, all without disrupting the operation of the production database.
1717

18-
> [!WARNING]
19-
> The following procedures uses entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) section.
20-
2118
### To create a development database
2219

2320
1. In **SQL Server Object Explorer**, under the **SQL Server** node, expand your connected server instance.

docs/ssdt/how-to-create-a-new-database-project.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ You can create a new database project and import database schema from an existin
2020

2121
The following two procedures essentially achieve the same goal by creating a new database project and importing schema from an existing database. Each database object will be represented as a SQL script file (.sql) in **Solution Explorer**. For more information on importing database schema from a snapshot, see [How to: Create a Snapshot of a Project](../ssdt/how-to-create-a-snapshot-of-a-project.md).
2222

23-
> [!WARNING]
24-
> The following procedures utilize entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) section.
25-
2623
### To create a new database project off a connected database
2724

2825
1. Right-click the **TradeDev** node in **SQL Server Object Explorer** and select **Create New Project**.
@@ -35,7 +32,7 @@ The following two procedures essentially achieve the same goal by creating a new
3532

3633
5. Examine the hierarchy in the **Solution Explorer**. Expand the **dbo** folder and you will find separate **Functions**, **Tables** and **Views** folders. Notice that the tables and function are grouped under their schema folders.
3734

38-
6. Double-click **Products.sql** under **Tables**. The **Table Designer** opens, showing the visual interpretation of the table in the Columns Grid, and the script definition of the table in the Script Pane. This is identical to what we see in the [Connected Database Development](../ssdt/connected-database-development.md) section.
35+
6. Double-click **Products.sql** under **Tables**. The **Table Designer** opens, showing the visual interpretation of the table in the Columns Grid, and the script definition of the table in the Script Pane. This is identical to what we see in the [Manage Tables, Relationships, and Fix Errors](../ssdt/manage-tables-relationships-and-fix-errors.md)section.
3936

4037
7. Uncheck the **Allow Nulls** box for the **CustomerId** column. Press CTRL + S to save the file.
4138

@@ -59,7 +56,7 @@ The following two procedures essentially achieve the same goal by creating a new
5956

6057
6. Examine the hierarchy in the **Solution Explorer**. Expand the **dbo** folder and you will find separate **Functions**, **Tables** and **Views** folders. Notice that the tables and function are grouped under their schema folders.
6158

62-
7. Double-click **Products.sql** under **Tables**. The **Table Designer** opens, showing the visual interpretation of the table in the Columns Grid, and the script definition of the table in the Script Pane. This is identical to what we see in the [Connected Database Development](../ssdt/connected-database-development.md) section.
59+
7. Double-click **Products.sql** under **Tables**. The **Table Designer** opens, showing the visual interpretation of the table in the Columns Grid, and the script definition of the table in the Script Pane. This is identical to what we see in the [Manage Tables, Relationships, and Fix Errors](../ssdt/manage-tables-relationships-and-fix-errors.md)section.
6360

6461
8. Uncheck the **Allow Nulls** box for the **CustomerId** column. Press CTRL + S to save the file.
6562

docs/ssdt/how-to-create-a-snapshot-of-a-project.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,44 +18,41 @@ A **Data-tier Application** file provides you with a read-only representation of
1818

1919
In the event of a user error on a source database project, you can revert the source project to the state it was in when the snapshot was created. You can also establish snapshots at various stages of your development for baseline purpose.
2020

21-
> [!WARNING]
22-
> The following procedures utilize entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) and [Project-Oriented Offline Database Development](../ssdt/project-oriented-offline-database-development.md) sections.
21+
## To create a snapshot
2322

24-
### To create a snapshot
23+
1. Right-click the **TradeDev** project in **Solution Explorer**, and select **Data-tier Application (\*.dacpac)...**.
2524

26-
1. Right-click the **TradeDev** project in **Solution Explorer**, and select **Data-tier Application (\*.dacpac)...**.
25+
2. SSDT will attempt to build the project first. If there is no build error, a **Snapshot** folder is created in **Solution Explorer**. Inside this folder, SSDT creates a .dacpac file using the name format of "\<Project Name\>_YYYYMMDD_HH-MM-SS.dacpac".
2726

28-
2. SSDT will attempt to build the project first. If there is no build error, a **Snapshot** folder is created in **Solution Explorer**. Inside this folder, SSDT creates a .dacpac file using the name format of "\<Project Name\>_YYYYMMDD_HH-MM-SS.dacpac".
27+
3. Right-click the .dacpac file and select **Rename**. Change the default file name to "TradeDev1.dacpac".
2928

30-
3. Right-click the .dacpac file and select **Rename**. Change the default file name to "TradeDev1.dacpac".
29+
4. Right-click the **GetProductsBySupplier** function in **Solution Explorer** and select **Delete** to remove it from the project.
3130

32-
4. Right-click the **GetProductsBySupplier** function in **Solution Explorer** and select **Delete** to remove it from the project.
33-
34-
5. Follow the previous steps to create a new snapshot called **TradeDev2.dacpac**.
31+
5. Follow the previous steps to create a new snapshot called **TradeDev2.dacpac**.
3532

3633
### To import a snapshot
3734

38-
1. Right-click the **TradeDev** project in **Solution Explorer**, select **Import**, then **Data-tier Application (\*.dacpac)...** from the contextual menus.
35+
1. Right-click the **TradeDev** project in **Solution Explorer**, select **Import**, then **Data-tier Application (\*.dacpac)...** from the contextual menus.
3936

40-
2. In the **Import Data-tier Application** dialog box, click **Browse** to select **TradeDev1.dacpac** to be used as the source of the import.
37+
2. In the **Import Data-tier Application** dialog box, click **Browse** to select **TradeDev1.dacpac** to be used as the source of the import.
4138

4239
Notice that the **Target project** section has been disabled, since the current project is the default target. Click **Start** to start the import.
4340

44-
3. Click **Finish** in the **Summary** page. In **Solution Explorer**, notice that the deleted table has been restored to the project.
41+
3. Click **Finish** in the **Summary** page. In **Solution Explorer**, notice that the deleted table has been restored to the project.
4542

4643
> [!WARNING]
4744
> The import snapshot will import all database entities in the snapshot schema to the project. This might create duplicate entities as a result. For example, each of the tables and view now contains an additional copy of itself named <ObjectName_1>. Right-click each of these duplicate objects in **Solution Explorer** and select **Delete** to remove it from the project.
4845
4946
### To compare snapshots
5047

51-
1. Right-click **TradeDev1.dacpac** in Solution Explorer and select **Schema Compare**. The **Schema Compare** window opens.
48+
1. Right-click **TradeDev1.dacpac** in Solution Explorer and select **Schema Compare**. The **Schema Compare** window opens.
5249

53-
2. Use the **Data-tier Application File** options to set the source and target schemas. Make sure that the **Source Schema** is set to **TradeDev1.dacpac** in **Data-tier Application File**, and the **Target Schema** is set to **TradeDev2.dacpac**.
50+
2. Use the **Data-tier Application File** options to set the source and target schemas. Make sure that the **Source Schema** is set to **TradeDev1.dacpac** in **Data-tier Application File**, and the **Target Schema** is set to **TradeDev2.dacpac**.
5451

55-
3. Click **OK** to start the compare. Notice that the deleted function is being highlighted as a difference between the old and new snapshot.
52+
3. Click **OK** to start the compare. Notice that the deleted function is being highlighted as a difference between the old and new snapshot.
5653

5754
You can easily find the delta of different snapshots by using Schema Compare. In this case, you can find out how your project evolves during the development process.
5855

59-
## See Also
56+
## See Also
57+
6058
[How to: Use Schema Compare to Compare Different Database Definitions](../ssdt/how-to-use-schema-compare-to-compare-different-database-definitions.md)
61-

docs/ssdt/how-to-create-new-database-objects-using-queries.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ If you prefer to use scripts to create or edit views, stored procedures, functio
1515

1616
The Transact-SQL Editor is invoked when you use the **View Code** contextual menu to open a database entity in a connected database or a project. It is also automatically opened when you use the **New Query** contextual menu from the SQL Server Object Explorer, or add a new script object to a database project. If you are not connected to a database but want to execute a query against it, you can also use the **New Query Connection** dialog box by selecting **Transact-SQL Editor** menu from the **SQL** menu to connect to a database and launch the Transact-SQL Editor.
1717

18-
> [!WARNING]
19-
> The following procedures use entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) section.
20-
2118
### To create a new table using a Transact-SQL query
2219

2320
1. Right-click the **Trade** database node and select **New Query**.

docs/ssdt/how-to-debug-stored-procedures.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ The Transact-SQL debugger allows you to interactively debug stored procedures by
1717

1818
This example shows how to create and debug a Transact-SQL stored procedure by stepping into it.
1919

20-
> [!WARNING]
21-
> The following procedure uses entities created in procedures in the [Connected Database Development](../ssdt/connected-database-development.md) and [Project-Oriented Offline Database Development](../ssdt/project-oriented-offline-database-development.md) sections.
22-
2320
> [!NOTE]
2421
> Transact-SQL debugging isn't available for Azure SQL Database or Azure SQL Managed Instance.
2522

docs/ssdt/how-to-delete-objects-and-resolve-dependencies.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ f1_keywords:
1717

1818
When you rename or delete an object in **SQL Server Object Explorer**, SQL Server Data Tools automatically detects all its dependency objects, and will prepare an ALTER script to rename or drop the dependency as needed.
1919

20-
> [!WARNING]
21-
> The following procedures uses entities created in previous procedures in the [Connected Database Development](../ssdt/connected-database-development.md) section.
22-
2320
### To delete a database
2421

2522
1. Right-click a database in **SQL Server Object Explorer**, and select **Delete**.

0 commit comments

Comments
 (0)