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

Commit b674178

Browse files
committed
Remove duplicate entry, fix formatting
1 parent 7df3be4 commit b674178

1 file changed

Lines changed: 26 additions & 96 deletions

File tree

docs/relational-databases/sql-server-transaction-locking-and-row-versioning-guide.md

Lines changed: 26 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -69,58 +69,20 @@ An explicit transaction is one in which you explicitly define both the start and
6969

7070
You can use all [!INCLUDE[tsql](../includes/tsql-md.md)] statements in an explicit transaction, except for the following statements:
7171

72-
:::row:::
73-
:::column:::
74-
ALTER DATABASE
75-
:::column-end:::
76-
:::column:::
77-
CREATE DATABASE
78-
:::column-end:::
79-
:::column:::
80-
DROP FULLTEXT INDEX
81-
:::column-end:::
82-
:::row-end:::
83-
:::row:::
84-
:::column:::
85-
ALTER FULLTEXT CATALOG
86-
:::column-end:::
87-
:::column:::
88-
CREATE FULLTEXT CATALOG
89-
:::column-end:::
90-
:::column:::
91-
RECONFIGURE
92-
:::column-end:::
93-
:::row-end:::
94-
:::row:::
95-
:::column:::
96-
ALTER FULLTEXT INDEX
97-
:::column-end:::
98-
:::column:::
99-
CREATE FULLTEXT INDEX
100-
:::column-end:::
101-
:::column:::
102-
RESTORE
103-
:::column-end:::
104-
:::row-end:::
105-
:::row:::
106-
:::column:::
107-
BACKUP
108-
:::column-end:::
109-
:::column:::
110-
DROP DATABASE
111-
:::column-end:::
112-
:::column:::
113-
Full-text system stored procedures
114-
:::column-end:::
115-
:::row-end:::
116-
:::row:::
117-
:::column:::
118-
DROP FULLTEXT CATALOG
119-
:::column-end:::
120-
:::column:::
121-
sp_dboption to set database options or any system procedure that modifies the master database inside explicit or implicit transactions.
122-
:::column-end:::
123-
:::row-end:::
72+
- CREATE DATABASE
73+
- ALTER DATABASE
74+
- DROP DATABASE
75+
- CREATE FULLTEXT CATALOG
76+
- ALTER FULLTEXT CATALOG
77+
- DROP FULLTEXT CATALOG
78+
- DROP FULLTEXT INDEX
79+
- ALTER FULLTEXT INDEX
80+
- CREATE FULLTEXT INDEX
81+
- BACKUP
82+
- RESTORE
83+
- RECONFIGURE
84+
- Full-text system stored procedures
85+
- `sp_dboption` to set database options or any system procedure that modifies the `master` database inside explicit or implicit transactions.
12486

12587
> [!NOTE]
12688
> UPDATE STATISTICS can be used inside an explicit transaction. However, UPDATE STATISTICS commits independently of the enclosing transaction and cannot be rolled back.
@@ -133,50 +95,18 @@ When a connection is operating in implicit transaction mode, the instance of the
13395

13496
After implicit transaction mode has been set on for a connection, the instance of the [!INCLUDE[ssDEnoversion](../includes/ssdenoversion-md.md)] automatically starts a transaction when it first executes any of these statements:
13597

136-
:::row:::
137-
:::column:::
138-
ALTER TABLE
139-
:::column-end:::
140-
:::column:::
141-
FETCH
142-
:::column-end:::
143-
:::column:::
144-
REVOKE
145-
:::column-end:::
146-
:::row-end:::
147-
:::row:::
148-
:::column:::
149-
CREATE
150-
:::column-end:::
151-
:::column:::
152-
GRANT
153-
:::column-end:::
154-
:::column:::
155-
SELECT
156-
:::column-end:::
157-
:::row-end:::
158-
:::row:::
159-
:::column:::
160-
DELETE
161-
:::column-end:::
162-
:::column:::
163-
INSERT
164-
:::column-end:::
165-
:::column:::
166-
TRUNCATE TABLE
167-
:::column-end:::
168-
:::row-end:::
169-
:::row:::
170-
:::column:::
171-
DROP
172-
:::column-end:::
173-
:::column:::
174-
OPEN
175-
:::column-end:::
176-
:::column:::
177-
UPDATE
178-
:::column-end:::
179-
:::row-end:::
98+
- ALTER TABLE
99+
- CREATE
100+
- DELETE
101+
- DROP
102+
- FETCH
103+
- GRANT
104+
- INSERT
105+
- OPEN
106+
- REVOKE
107+
- SELECT
108+
- TRUNCATE TABLE
109+
- UPDATE
180110

181111
- **Batch-scoped Transactions**
182112
Applicable only to multiple active result sets (MARS), a [!INCLUDE[tsql](../includes/tsql-md.md)] explicit or implicit transaction that starts under a MARS session becomes a batch-scoped transaction. A batch-scoped transaction that is not committed or rolled back when a batch completes is automatically rolled back by [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)].

0 commit comments

Comments
 (0)