Skip to content

Commit e46643f

Browse files
authored
Merge pull request #23664 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 262d304 + b329dc1 commit e46643f

2 files changed

Lines changed: 19 additions & 5 deletions

File tree

docs/relational-databases/replication/codesnippet/tsql/administer-a-peer-to-pee_3.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ USE AdventureWorks2012
99
EXEC sp_addarticle
1010
@publication = @publication,
1111
@article = @newtable,
12-
@source_table = @newtable,
12+
@source_object = @newtable,
1313
@destination_table = @newtable,
1414
@force_invalidate_snapshot = 0;
15-
GO
15+
GO

docs/ssdt/release-notes-ssdt-2019.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ More information is available in release notes.**
3030
- Since version 3.3, Power Query Source for SQL Server 2017 and Microsoft Oracle Connector for SQL Server 2019 have been excluded from the installation of this product. To continue using these two components, manually download and install them by yourselves. Here are the download links: [Power Query Source for SQL Server 2017 and 2019](https://www.microsoft.com/download/details.aspx?id=100619), [Microsoft Oracle Connector for SQL Server 2019](https://www.microsoft.com/download/details.aspx?id=58228)
3131

3232
## Common Issues
33-
34-
- **If you get an error during installation, you can check the logs under %temp%\SsdtisSetup.** Also, you can zip the folder and send the logs to ssistoolsfeedbacks@microsoft.com for troubleshooting.
35-
3633
- SSIS Execute Package Task doesn't support debugging when ExecuteOutOfProcess is set to True.
3734

3835
- SQL Server Integration Services Projects extension doesn't support Visual Studio 2022 yet.
@@ -59,3 +56,20 @@ More information is available in release notes.**
5956
3. **When executing SSIS project targeting SqlServer 2019 on the environment that SQL Server 2019 are also installed**, the execution will fail with error "Unable to cast COM object of type System._ComObject to interface type Microsoft.SqlServer.Dts.Runtime.Wrapper.Sql2019.IDTSApplication160".
6057
Workaround: Solution Explorer -> right click project ->properties->debugging->Run64bitRuntime->set to false.
6158

59+
## Download issues
60+
61+
If you get an error during installation, you can check the logs under %temp%\SsdtisSetup.
62+
Usually, the detail error log is at the end of Microsoft.DataTools.IntegrationServices_{timstamp}_ISVsix.log.
63+
- If the error is "The file {filefullpath} already exists."
64+
1. set idepath=”C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7” (replace with your path)
65+
```
66+
rm %idepath%\IDE\CommonExtensions\Microsoft\SSIS\*
67+
rm %idepath%\IDE\PublicAssemblies\SSIS\*
68+
rm %idepath%\IDE\PublicAssemblies\Microsoft BI\Business Intelligence Projects\Integration Services\*
69+
```
70+
2. Repair the vs2019
71+
3. Restart and start ssdt setup install again
72+
- If the error is "Microsoft.VisualStudio.Setup.CanceledByPrecheckException: Pre-check verification failed with warning(s) : AnotherInstallationRunning."
73+
- Kill msiexec.exe process and relaunch.
74+
- If it is not above error in ISVsix.log, you can zip the folder and send the logs to ssistoolsfeedbacks@microsoft.com for troubleshooting.
75+

0 commit comments

Comments
 (0)