Tagged Questions
0
votes
3answers
75 views
T-SQL Transaction with many (1000+) INSERTS gets disconnected
Is there a limit on the number of INSERT statements you can put inside a transaction?
I am getting a transport error and the connection disconnects in the middle of running the statement.
Should I ...
1
vote
1answer
23 views
Look for best practice when handling errors in TSQL Scripts
I'm trying to come up with a template for error handling within a stored procedure or just general statements that would be able to handle 99% of failures or errors.
After looking online for ...
1
vote
0answers
93 views
Rollback trans and unlock tables on SQL Server
Hy , sometimes I had problems with SQL Server because of unknown transactions left opened or a lock table, and I read many suggestion to avoid restarting the server
until I found this , and it seems ...
-1
votes
1answer
64 views
how to get use identity column value before transaction done?
Suppose I have 3 tables in my database like this:
Person (personid, ...) ---this is entity, personid is identity column
Phone (phoneid, ...) ---this is entity, phoneid is identity column
...
0
votes
0answers
23 views
Transaction Log Shipping Secondary Server Recovery Model [closed]
I have Transaction Log Shipping set up on one of our databases, and I have a query with regards to the Recovery Model setting on the secondary or target database. Currently it is set to FULL.
Please ...
1
vote
2answers
107 views
T-SQL install / upgrade script as a transaction
I'm trying to write a single T-SQL script which will upgrade a system which is currently in deployment. The script will contain a mixture of:
New tables
New columns on existing tables
New ...
0
votes
0answers
259 views
BCP queryout command creates text file but hangs when executed within a job step in a transaction
Okay, I've been battling with this problem for almost a week now and I cannot for the life of me figure out what the issue is.
Problem: BCP utility creates txt file but nothing happens after. The ...
0
votes
0answers
56 views
Database Transactions - Keeping some data from rolling back
How can I keep some data from a transaction which is expected to roll back?
Is there a way of telling the transaction not to roll back some lines?
Would executing a stored procedure stop the ...
2
votes
1answer
44 views
Does a transaction cover the subroutines?
When I begin transaction and exec a stored procedure, does that transaction cover the changes made by the stored procedure I executed? Would a rollback transaction cancel the changes made by the ...
1
vote
0answers
40 views
TSQL / .net transaction handling LinqToClasses DataClassesDataContext
I am using T/SQL stored procedures to ensure that if data gets into the database the data has integrity. I use boilerplate code for the stored procedures to wrap up the stored procedure in a ...
1
vote
3answers
117 views
TSQL error checking code not working
I'm trying to add an alert to my log for a running insert of a view into a table when there is an error executing the query in the view. When I run the view alone, I get an invalid input into ...
0
votes
1answer
34 views
How to log an error from a catch block and at the same time rollback the transaction?
BEGIN TRANSACTION
BEGIN TRY
--DO_ACTION
--COMMIT_TRANSACTION
END TRY
BEGIN CATCH
--LOG_ERROR (e.g. INSERT INTO ErrorTable (ERROR_MESSAGE(), ...))
--ROLLBACK
...
0
votes
1answer
29 views
Status report on progress of a sequence of merges
I want to use T-SQL to perform a sequence of merges. I understand that if one fails, it rolls back, but I would like to print a message to the effect - so I know I need to go and check it. I can't ...
2
votes
1answer
199 views
SSIS distributed Transactions Error "Failed to Acquire Connection
I am using SSIS built-in transactions. Scenario is as following
There are two databases on Same Server and I need to Merge them (INSERT/UPDATE)
I am using SQL Merge Clause to do so. There are few ...
0
votes
3answers
113 views
Multi-statement SQL transaction failing at null parameter
I have a multi-statement SQL query that takes place within a SqlTransaction as follows:
string sName = "";
string sNumber = "";
string sFirstName = "";
string sqlQuery1 = @"INSERT INTO myTable(Name, ...
4
votes
1answer
803 views
When it's necessary to check @@trancount > 0 in try catch block?
Sometimes I saw the following code snippet. When is the if @@trancount > 0 necessary with begin try? Both of them? Or it's a safe way(best practice) to check it always in case it's rollback before ...
1
vote
3answers
407 views
How to get an Identity column value (not committed yet) inside a transaction
Inside a TSQL transaction I have an operation of inserting a record into a MyTable1 and an operation of updating a MyTable2 with a value of Identity column of the MyTable1 record, which is only to be ...
2
votes
1answer
402 views
TSQL transaction checking both @@ERROR and @@ROWCOUNT after a statement
I can rollback a transaction if an error occurs:
CREATE PROCEDURE [dbo].[MySproc]
(
@Param1 [int]
)
AS
BEGIN TRAN
SET NOCOUNT ON;
SELECT @Param1
UPDATE [dbo].[Table1]
SET Col2 = 'something'
...
1
vote
1answer
165 views
SQL Try-Catch and transactions issue
I have a transaction like this and I have a few questions about it.
If I were to run this against 'Master' where it should error because the table 'Year' does not exist I do not see the transaction ...
2
votes
1answer
97 views
which is better approach for roll back transaction in sql server?
I came to know we can go for roll back transaction using "set xact_abort on"
i want to know which is the better way for roll back transaction: use "set xact_abort on" or simple the following code
...
0
votes
1answer
53 views
Proper locking for reliable insertion (MySQL)
When receiving so called IPN message from PayPal, I need to update a row in my database.
The issue is that I need perfect reliability.
Currently I use InnoDB. I am afraid that the transaction may ...
1
vote
3answers
320 views
BEGIN TRAN and COMMIT TRAN in a stored procedure
I have a procedure that looks like the below
BEGIN
SET NOCOUNT ON
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'X')
UPDATE TABLE X
SET ROW = 4
...
1
vote
2answers
61 views
Is it enough to test a stored-procedure safely just by running it in a transaction?
I have a sp called MoveSomeItems which gets some rows from tableA from Foo Db. and moves them to tableA in Bar Db.
I want to test this sp if it really moves the items.
Is it enough to run this sp in ...
0
votes
3answers
214 views
SQL server Isolation level
I have n machines writing to DB (sql server) at the exact same time (initiating a transaction). I'm setting the Isolation level to serializable. My understanding is that whichever machine's ...
0
votes
1answer
3k views
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT?
Question: I have this SQL script:
DECLARE @in_TE_UID varchar(36)
DECLARE @in_ZO_BETE_Sort int
DECLARE @in_user int
SET @in_TE_UID = '9f510440-8828-44ce-bbea-6bc866902262'
SET @in_ZO_BETE_Sort = ...
0
votes
1answer
407 views
Rollback of nested transaction throwing error in TSQL
Here is a snippet of what I am trying to achieve. I have a nested transaction 'tran2', which I can't rollback
SELECT 'Before', * FROM [table] WHERE field ..
BEGIN TRAN tran1
UPDATE [table] set ...
0
votes
1answer
137 views
understanding SQL Server timeouts
Working with Entity framework and had a couple of questions on timeouts.
This following article http://blogs.msdn.com/b/khen1234/archive/2005/10/20/483015.aspx
says
A client signals a query ...
3
votes
1answer
778 views
SQL Server Deadlock on KEY Lock when attempting to run Delete statements concurrently
I would really appreciate some help with this one. It has me stumped. Basically Im running a Proc with a series of Delete statements in a transaction. This proc will be called by a multi threaded ...
1
vote
2answers
70 views
Will a DB procedure in a transaction still be rolled back from inside an ADO.net transaction?
Sorry, that was a hard question to word:
Say I have a stored procedure that does some inserting. It is wrapped in a transaction and commits, provided every goes well inside of that transaction.
Now, ...
1
vote
2answers
734 views
T-SQL EXEC command inside transaction
I need to execute a store procedure from another with the common EXEC command.
I need to be sure, that all the sql statements will be under transaction.
BEGIN TRANSACTION
BEGIN TRY
SET ...
1
vote
2answers
642 views
T-SQL: stored procedure to increment products views count
I am a very beginner with sql and I need to write a SP in order to increment products views count. When user searches on site we want to increment the counter for all products that were returned by ...
0
votes
2answers
310 views
Transaction management and temporary tables in SQL Server
Sorry for the title, perhaps it's not very clear.
I have some SQL queries in a script that depend on each other.
The script uses a temporary table in which the data is inserted (the #temp_data ...
4
votes
2answers
997 views
Snapshot isolation transaction aborted due to update conflict
Following statement:
INSERT INTO dbo.Changes([Content], [Date], [UserId], [CompanyId])
VALUES (@1, @2, @3, @4);
SELECT @@identity;
gives me this SQL error 3960:
Snapshot isolation ...
0
votes
3answers
136 views
Is it good coding practice to do a BEGIN/COMMIT TRAN on an Single INSERT/SET? (SQL Server 2008)
I just noticed a Stored Procedure was using the following BEGIN/COMMIT TRAN.
BEGIN TRAN
INSERT INTO SomeTable
(
TypeID
)
VALUES
(
@TypeID
)
SET ...
3
votes
2answers
5k views
Correctly use of Transaction in SQL Server 2008
I have 2 commands and need both of them executed correctly or none of them execute.
So I think need a Transaction but I don't now how can use it correctly whats the problem with the following script:
...
1
vote
1answer
252 views
Put bcp inside a transaction with another tsql statement
After a bcp output command from tsql did its work (export a file) you generally want to cleanup the source afterwards.
This typically involves truncating the source table or setting a flag that the ...
1
vote
1answer
48 views
Let each run of a sproc process its share of rows
I am maintaining a sproc where the developer has implemented his own locking mechanism but to me it seemed flawed:
CREATE PROCEDURE Sproc 1
AS
Update X
set flag = lockedforprocessing
where flag = ...
10
votes
1answer
873 views
SQL Server: Isolation level leaks across pooled connections
As demonstrated by previous Stack Overflow questions (TransactionScope and Connection Pooling and How does SqlConnection manage IsolationLevel?), the transaction isolation level leaks across pooled ...
0
votes
3answers
124 views
Why does this SQL Server transaction always fail and how to fix the stored procedure structure?
I'm having some trouble with a stored procedure with a transaction always failing. I think it's because of IF EXISTS(SELECT 1 FROM TargetTable WHERE BaseTableId = @BaseTableId) or the way the code ...
0
votes
1answer
93 views
TSQL Trigger on Subscriber Table
I have a replicated subscriber table on SQL Server 2008. I have put a trigger on it that may or may not fail. The table is read only.
My question is :
If I use the following
SAVE TRANSACTION ...
2
votes
2answers
760 views
What is difference between tran and transaction in SQL Server 2005
What is difference between tran and transaction in SQL Server 2005 ?
Following are two statements
Begin Tran
Begin
.........
.........
End
Rollback
OR
Begin Transaction
Begin
......
...
2
votes
1answer
1k views
When to use Transactions in SQL Server
There are lots and lots of questions on HOW to use Transactions. What I want to know is WHEN? Under what circumstances? What types of queries? Can Try-Catch blocks suffice instead? Etc...
I've ...
0
votes
2answers
219 views
SQL Azure / SQL Server 2008 - Stored procedure - do not insert if error at any point
I have quite a simple question I think, but I need a definitive answer. I can't think of way to test out my ideas because it depends on a transient error (out of my control)
SQL Azure is prone to ...
1
vote
2answers
836 views
Transaction support in ADODB for legacy VB6 Application
We're in the midst of migrating a legacy VB6 application from a Sybase backend to a SQL Server 2008 R2. Most applications are making the transition well, however I have one app that uses rigorous ...
0
votes
2answers
313 views
How can I ensure the UPDATE statement in this small LOOP to be executed within a Transaction?
I have this loop, which updates @UpdateBlockSize number of records on each iteration:
WHILE 1=1
BEGIN
UPDATE TOP (@UpdateBlockSize) table1
SET field1 = nv.value
FROM table1 i
...
2
votes
1answer
183 views
Sql progress logging in transaction
I am would like to display progress feedback for user while stored procedure is running (multiple setps). All sql code is in transaction so I am using a service broker to get a real time updates. ...
1
vote
2answers
1k views
TSQL transaction - commit and rollback
I have two procedure:
create procedure P2
as
begin
print @@trancount
begin tran
if 1 = 1
begin
print @@trancount
rollback
end
else
begin
...
0
votes
2answers
569 views
Multiple Go in stored procedure
I'd like to write a stored procedure and store it in a SQL Server database. The procedure is supposed to remove all tables regardless of dependency constraints.
CREATE PROCEDURE sp_clear_db AS
BEGIN
...
0
votes
1answer
2k views
TSQL try catch transaction error handling, transaction count mismatch
I have a sproc that I am calling from C# with a transaction by doing:
using (var dbContext = PowerToolsDatabase.GetDataContext())
{
dbContext.Connection.Open();
using (dbContext.Transaction = ...
2
votes
1answer
176 views
Rolling Back A Transaction In T-SQL After Code Has Been Executed
I am trying to find a method to rollback a transaction after it has been executed.
For example:
DECLARE @tsubaki VARCHAR(25);
SET @tsubaki = 'A Transaction';
BEGIN TRANSACTION @tsubaki
UPDATE ...

