Skip to content

Commit 1a4925a

Browse files
authored
Merge pull request #8782 from MicrosoftDocs/main
Auto push to live 2025-04-23 10:02:10
2 parents 0b2f8c8 + b3e09dc commit 1a4925a

File tree

8 files changed

+245
-112
lines changed

8 files changed

+245
-112
lines changed

support/azure/azure-kubernetes/extensions/troubleshoot-failed-kubernetes-deployment-offer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Troubleshoot the failed deployment of a Kubernetes application offer
33
description: Troubleshoot the failed deployment of a Kubernetes application offer that was made on the Azure Marketplace.
4-
ms.date: 01/24/2024
5-
ms.reviewer: chiragpa, atchub, v-leedennis
4+
ms.date: 04/22/2025
5+
ms.reviewer: chiragpa, atchub, v-leedennis, mnasser
66
editor: v-jsitser
77
ms.service: azure-kubernetes-service
88
#Customer intent: As an Azure Marketplace user, I want to troubleshoot the failed deployment of a Kubernetes application after I accept an offer on the Marketplace.

support/sql/database-engine/connect/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ items:
99
href: cannot-generate-sspi-context-error.md
1010
- name: Can't use Kerberos unconstrained delegation
1111
href: windows-prevents-unconstrained-delegation.md
12-
- name: Change NETMON parser port for SQL Server
13-
href: change-netmon-parser-port-for-sql-server.md
1412
- name: Certificate validation failure
1513
href: certificate-validation-failure.md
14+
- name: Change NETMON parser port for SQL Server
15+
href: change-netmon-parser-port-for-sql-server.md
1616
- name: Consistent authentication connectivity issues
1717
href: consistent-authentication-connectivity-issues.md
1818
items:

support/sql/database-engine/replication/sql-transaction-log-grows.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SQL Transaction log grows continuously
33
description: This article helps you resolve the problem where you notice continuous transaction log growth for a CDC enabled database.
4-
ms.date: 03/16/2020
4+
ms.date: 04/23/2025
55
ms.custom: sap:Replication, Change Tracking, Change Data Capture, Synapse Link
66
---
77
# SQL Transaction log grows when you use Change Data Capture for Oracle by Attunity
@@ -37,10 +37,10 @@ DBCC execution completed. If DBCC printed error messages, contact your system ad
3737

3838
You may have a non-distributed LSN because CDC for Oracle uses CDC for SQL stored procedures, and that, in turn, uses the replication log reader. This non-distributed LSN corresponds to the log entries to add the mirrored table in the Attunity CDC database.
3939

40-
If you run this query, the `log_reuse_wait_desc` option returns a value of `REPLICATION`, indicating the cause. Select the `log_reuse_wait_desc` name from `sys.databases`, where the name is \<your_cdc_database\>:
40+
If you run this query, the `log_reuse_wait_desc` option returns a value of `REPLICATION`, indicating the cause.
4141

4242
```sql
43-
REPLICATION <your_cdc_database>
43+
SELECT log_reuse_wait_desc FROM sys.databases WHERE name = '<your_cdc_database>'
4444
```
4545

4646
## Resolution
@@ -78,23 +78,23 @@ REPLICATION <your_cdc_database>
7878
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
7979
```
8080

81-
4. To make sure that the transaction log can be reused, confirm that there is no other reuse reason indicated on the database:
81+
4. To make sure that the transaction log can be reused, confirm that there's no other reuse reason indicated on the database:
8282
8383
```sql
84-
SELECT log_reuse_wait_desc, NAME FROM sys.databases WHERE NAME = 'your_cdc_database'
84+
SELECT log_reuse_wait_desc, NAME FROM sys.databases WHERE NAME = '<your_cdc_database>'
8585
```
8686
8787
This returns output that resembles the following:
8888
8989
```output
9090
log_reuse_wait_desc name
91-
NOTHING your_cdc_database
91+
NOTHING <your_cdc_database>
9292
```
9393
9494
5. Now you should be able to truncate the Transaction log by using log backups. You should also be able to shrink the transaction log file to reduce the disk space that's consumed. For example, run the following:
9595

9696
```sql
97-
BACKUP LOG your_cdc_database TO DISK='c:\folder\logbackup.trn'
97+
BACKUP LOG <your_cdc_database> TO DISK='c:\folder\logbackup.trn'
9898
DBCC SHRINKFILE (yourcdcdatabase_log, 1024)
9999
```
100100

support/windows-server/active-directory/active-directory-domain-join-troubleshooting-guidance.md

Lines changed: 3 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -87,45 +87,7 @@ For more information, see [Error code 0xa8b: An attempt to resolve the DNS name
8787

8888
### Error code 0x40
8989

90-
The following error messages occur when you try to join the computer to the domain:
91-
92-
> The specified network name is no longer available
93-
94-
:::image type="content" source="media/active-directory-domain-join-troubleshooting-guidance/domain-join-error-message.png" alt-text="Screenshot of the dialog box showing the error message for error code 0x40.":::
95-
96-
Here's an example from the *netsetup.log* file:
97-
98-
```output
99-
mm/dd/yyyy hh:mm:ss:ms NetpValidateName: checking to see if '<domain_name>' is valid as type 3 name
100-
mm/dd/yyyy hh:mm:ss:ms NetpCheckDomainNameIsValid [ Exists ] for '<domain_name>' returned 0x0
101-
mm/dd/yyyy hh:mm:ss:ms NetpValidateName: name '<domain_name>' is valid for type 3
102-
mm/dd/yyyy hh:mm:ss:ms NetpDsGetDcName: trying to find DC in domain '<domain_name>', flags: 0x40001010
103-
mm/dd/yyyy hh:mm:ss:ms NetpDsGetDcName: failed to find a DC having account 'CLIENT1$': 0x525, last error is 0x0
104-
mm/dd/yyyy hh:mm:ss:ms NetpDsGetDcName: status of verifying DNS A record name resolution for 'DCA.<domain_name>': 0x0
105-
mm/dd/yyyy hh:mm:ss:ms NetpDsGetDcName: found DC '\\<dc_fqdn>' in the specified domain
106-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: NetpDsGetDcName returned: 0x0
107-
mm/dd/yyyy hh:mm:ss:ms NetpDisableIDNEncoding: using FQDN <domain_name> from dcinfo
108-
mm/dd/yyyy hh:mm:ss:ms NetpDisableIDNEncoding: DnsDisableIdnEncoding(UNTILREBOOT) on '<domain_name>' succeeded
109-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: NetpDisableIDNEncoding returned: 0x0
110-
mm/dd/yyyy hh:mm:ss:ms NetUseAdd to \\<dc_fqdn>\IPC$ returned 64
111-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: status of connecting to dc '\\<dc_fqdn>': 0x40
112-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: Function exits with status of: 0x40
113-
mm/dd/yyyy hh:mm:ss:ms NetpResetIDNEncoding: DnsDisableIdnEncoding(RESETALL) on '<domain_name>' returned 0x0
114-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: NetpResetIDNEncoding on '<domain_name>': 0x0
115-
mm/dd/yyyy hh:mm:ss:ms NetpDoDomainJoin: status: 0x40
116-
```
117-
118-
This error is logged when the client computer lacks network connectivity on TCP port 88 between the client machine and the DC. To troubleshoot this issue, you can run the following command to test the connection:
119-
120-
```PowerShell
121-
Test-NetConnection <IP_address_of_the_DC> -Port 88
122-
```
123-
124-
Expected Output:
125-
126-
:::image type="content" source="media/active-directory-domain-join-troubleshooting-guidance/test-netconnection-output-88.png" alt-text="Screenshot that shows the Test-NetConnection command for TCP port 88 output.":::
127-
128-
The output indicates that the Kerberos Port TCP 88 is open between the client and the DC.
90+
For more information, see [Domain join error 0x40 "The specified network name is no longer available"](domain-join-error-0x40-the-specified-network-name-is-no-longer-available.md).
12991

13092
### Error code 0x54b
13193

@@ -218,71 +180,11 @@ When you enter the domain name, make sure you enter the DNS Domain Name rather t
218180

219181
### Error code 0x3a
220182

221-
The following error occurred when attempting to join the domain:
222-
223-
> The specified server cannot perform the requested operation.
224-
225-
:::image type="content" source="media/active-directory-domain-join-troubleshooting-guidance/error-0x3a-message.png" alt-text="Screenshot of the dialog box showing the error message for error code 0x3a.":::
226-
227-
Here's an example from the *netsetup.log* file:
228-
229-
```output
230-
mm/dd/yyyy hh:mm:ss:ms NetpLdapBind: ldap_bind failed on <dc_fqdn>: 81: Server Down
231-
mm/dd/yyyy hh:mm:ss:ms NetpJoinCreatePackagePart: status:0x3a.
232-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: Function exits with status of: 0x3a
233-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: status of disconnecting from '\\<dc_fqdn>': 0x0
234-
mm/dd/yyyy hh:mm:ss:ms NetpResetIDNEncoding: DnsDisableIdnEncoding(RESETALL) on '<domain_name>' returned 0x0
235-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: NetpResetIDNEncoding on '<domain_name>': 0x0
236-
mm/dd/yyyy hh:mm:ss:ms NetpDoDomainJoin: status: 0x3a
237-
```
238-
239-
Error 0x3a is logged when the client computer lacks network connectivity on TCP port 389 between the client computer and the DC. To troubleshoot this issue, use the following command to test the connection:
240-
241-
```PowerShell
242-
Test-NetConnection <IP_address_of_the_DC> -Port 389
243-
```
244-
245-
Expected Output:
246-
247-
:::image type="content" source="media/active-directory-domain-join-troubleshooting-guidance/test-netconnection-output-389.png" alt-text="Screenshot that shows the Test-NetConnection command for TCP port 389 output.":::
248-
249-
It indicates that the LDAP Port TCP 389 is open between the client and the DC.
183+
For more information, see [Status code 0x3a: The specified server cannot perform the requested operation](status-code-0x3a-server-not-perform-operation.md).
250184

251185
### Error code 0x216d
252186

253-
The following error occurred when attempting to join the domain:
254-
255-
> Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
256-
257-
:::image type="content" source="media/active-directory-domain-join-troubleshooting-guidance/error-0x216d-message.png" alt-text="Screenshot of the dialog box showing the error message for error code 0x216d.":::
258-
259-
```output
260-
mm/dd/yyyy hh:mm:ss:ms NetpMapGetLdapExtendedError: Parsed [0x216d] from server extended error string: 0000216D: SvcErr: DSID-031A124C, problem 5003 (WILL_NOT_PERFORM), data 0
261-
mm/dd/yyyy hh:mm:ss:ms NetpModifyComputerObjectInDs: ldap_add_s failed: 0x35 0x216d
262-
mm/dd/yyyy hh:mm:ss:ms NetpCreateComputerObjectInDs: NetpModifyComputerObjectInDs failed: 0x216d
263-
mm/dd/yyyy hh:mm:ss:ms NetpProvisionComputerAccount: LDAP creation failed: 0x216d
264-
mm/dd/yyyy hh:mm:ss:ms NetpProvisionComputerAccount: Retrying downlevel per options
265-
mm/dd/yyyy hh:mm:ss:ms NetpManageMachineAccountWithSid: NetUserAdd on '<dc_fqdn>' for 'CLIENT1$' failed: 0x216d
266-
mm/dd/yyyy hh:mm:ss:ms NetpProvisionComputerAccount: retry status of creating account: 0x216d
267-
mm/dd/yyyy hh:mm:ss:ms ldap_unbind status: 0x0
268-
mm/dd/yyyy hh:mm:ss:ms NetpJoinCreatePackagePart: status:0x216d.
269-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: Function exits with status of: 0x216d
270-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: status of disconnecting from '\\<dc_fqdn>': 0x0
271-
mm/dd/yyyy hh:mm:ss:ms NetpResetIDNEncoding: DnsDisableIdnEncoding(RESETALL) on '<domain_name>' returned 0x0
272-
mm/dd/yyyy hh:mm:ss:ms NetpJoinDomainOnDs: NetpResetIDNEncoding on '<domain_name>': 0x0
273-
mm/dd/yyyy hh:mm:ss:ms NetpDoDomainJoin: status: 0x216d
274-
```
275-
276-
Error 0x216d is logged in one of these conditions:
277-
278-
- The user account trying to join the machine to the domain has exceeded the limit of 10 machines joined to the domain.
279-
- There is a GPO restriction to block authenticated users from joining a machine to the domain.
280-
281-
Verify that the user account is a member of the group mentioned in the **Add Workstations to domain** policy of the **Default Domain Controller Policy** GPO or the **Winning** GPO.
282-
283-
The GPO setting is located at **Computer Configuration** > **Policies** > **Windows Settings** > **Security Settings** > **Local Policies User Rights Assignment** > **Add workstations to domain**.
284-
285-
To verify the default limit to the number of workstations a user can join to the domain, see [Default limit to number of workstations a user can join to the domain](default-workstation-numbers-join-domain.md).
187+
For more information, see [Status code 0x216d: Your computer could not be joined to the domain](status-code-0x216d-not-joined-domain.md).
286188

287189
### Other errors that occur when you join Windows-based computers to a domain
288190

0 commit comments

Comments
 (0)