The sqltransaction tag has no wiki summary.
0
votes
3answers
67 views
Single sql transaction on mutiple method
Modular programing is right approach but it sometimes lead to problem which needs extra efforts and research. I have three database insert function like InsertName(),InsertAddress(),InsertPhoneNo() ...
3
votes
1answer
41 views
SQL Server Sequence Gaps
I have a SEQUENCE that I used to set the transaction folio of a table:
CREATE SEQUENCE [Seq].[Folio]
AS [bigint]
START WITH 114090
INCREMENT BY 1
MINVALUE -9223372036854775808
MAXVALUE ...
0
votes
1answer
18 views
Psql script not committing when executed from Java
I have a .bat file that executes the psql command to import a SQL script file. When I execute the .bat file from Windows command line, it executes correctly. But when I call the .bat file from Java ...
2
votes
1answer
49 views
Transaction handling in Trigger (TRY/CATCH…XACT_ABORT ON)
I have the process scenario on SQL Server 2008R2:
• A usp to gather data and then a transfer data between two SQL Servers
This process is to be done with transaction at all levels of the process ...
-2
votes
1answer
121 views
Moving data from one sql server instance to another C# [closed]
This all needs to be done programmatically in C#:
I need to take data in one database in one instance and move it to another database in a different sql server instance. If this succeeds, I need to ...
2
votes
2answers
101 views
Problems occurring when I use Transactions in Stored Procedure
I'm having an SQL related problem which is just pissing me off now :p. Here is my setup:
I have 2 Stored Procedures:
Parent Stored Procedure is called GenerateAnnualPenalty.
GenerateAnnualPenalty ...
0
votes
1answer
151 views
SqlTransaction to support multiple SqlConnections
So I have multiple SqlConnections that I want to all be used in one SqlTransaction. I know that I could use just one connection, but ultimately in each connection there is a good amount of newly ...
0
votes
2answers
145 views
TSQL Scope with table variable
I have a list of tables, some of which have column Employee_ID. At least one table is missing at least one Employee_ID. I want to find Employee_ID's missing from other tables.
I run the following, ...
0
votes
2answers
162 views
SQL Database is locking when triggers are used
I've an issue with deadlock..
I'm trying to provide sql dependency on updates to my database.
I do this by creating a trigger on a series of tables. When tables are modified, I increment a integer ...
-1
votes
1answer
55 views
transaction in program vs transaction in database
i'm new programmer
all i know is has 2 way to sql transaction control . But i want to know is
1.1 when should be use transaction in program and when should be use transaction in database.
1.2 ...
0
votes
1answer
231 views
how to manage nested transaction with try catch
--Drop Table Tab1
Begin Transaction TR1;
Save Transaction TR1;
Create Table Tab1(f1 decimal(10,0));
Begin Transaction TR2
Save Transaction TR2
insert into Tab1 values(1);
...
1
vote
1answer
83 views
how to prevent a transaction to rollback when an error caught in try catch in sql server 2005
I have a table Table1 with records
Table1
-------------------------------
ID F1
-------------------------------
01 1
02 OK
03 52
04 53
05 Null
------------------------------
here I want to ...
0
votes
1answer
151 views
Multiple transactions on the same table, at the same time
I am running into a problem which I have a table that can be edited by many thread, each thread creates a transaction to work with this table, if a transaction takes so long to complete, other threads ...
0
votes
1answer
205 views
How do transactions work with node-postgres?
I'm using node-postgres to make SQL queries with callback style. I have a function that takes in a list of queries and executes them within a transaction block. My understanding is that I submit the ...
1
vote
1answer
68 views
Error when using transaction [duplicate]
Possible Duplicate:
ExecuteNonQuery requires the command to have a transaction error in my code
strSQL = "insert into............";
SqlTransaction objSqlTransaction = ...
0
votes
1answer
41 views
MySql: Transactional safety when inserting rows
I want to execute the following two MySQL statements:
1) SELECT * FROM table1 WHERE field1=val1 FOR UPDATE;
2) UPDATE table1 SET field2=val2 WHERE field1=val1;
It is important that the second ...
0
votes
2answers
94 views
Finally Clause in SQL Server Transaction? Something that will execute irrespective of success or failure?
In SQL Server, is there something similar to finally clause in try..catch... block of c# ?
I mean, I am using BEGIN TRAN, END TRAN, COMMIT TRAN, ROLLBACK TRAN etc in a SQL Server transaction and want ...
0
votes
0answers
325 views
SQL Transaction with Parameters
I am using a SQL Transaction statement to execute a stored procedure. Traditionally, I would use command parameters to insert different variables into the command.
When I tried to use the same method ...
0
votes
0answers
70 views
.NET webservice timeout - abandon work
I have a Winforms application that calls a webservice method
The webservice method starts a long running transaction (unfortunately there are lots of little commands as opposed to one long running ...
0
votes
0answers
85 views
How to use transactions with typed dataset in c#?
I have a dataset.
How do I use transactions in this code?
tbl1TableAdapter.Insert(Parameter1,Parameter2,...);
tbl2TableAdapter.Insert(Parameter1,Parameter2,...);
.
.
...
1
vote
2answers
222 views
SqlClient.SqlTransaction vs System.Transactions
We have some constant issues with MSDTC setting up, now considering replacing SystemTransactions with SqlTransactions.
I am interested in differences of the above, and possible issues we might have ...
2
votes
2answers
712 views
transactions and symfony2 entity manager
Is there a way to manually specify transactions in symfony2 with the entity manager (doctrine), or perhaps a natural way of accomplishing in a single transaction what I am doing below in two?
// ...
2
votes
1answer
568 views
Processing Thousands of SqlCommands using a SqlTransaction Causes Memory Exception
I've written a custom replication function in a standard C# windows forms app with a SQL Server 2008 Express database. It basically pulls down a set of sql statements that need to be executed against ...
2
votes
3answers
1k views
How to handle multiple SQL transactions through different .net(c#) threads
I have the following method for bulk insert of the data in tables.
First my code populates the data in data tables and inserts this data in corresponding tables using the SqlBulkCopy claas of the .net ...
1
vote
0answers
85 views
Store stored Procedure's value in variable [closed]
I have a task that when users sends a message to other user then the message (id, subject, and message body) is sent and credit for that message is deducted from senders account.
If there is some ...
2
votes
3answers
430 views
C# SqlTransaction.Commit throw exception because Connection is null
I have a problem using SqlTransaction. Here's the code
SqlConnection conn = new SqlConnection(connectionString);
// assume that at this point I add try/catch and the connection is successfully ...
0
votes
2answers
187 views
How to use transactions in multiple SQL procedures?
I would like to start a transaction through a sql procedure, run other 2 procedure, and then run the first procedure with command: 'commit'.
Do you believe that this could be possible? I tried but ...
1
vote
1answer
249 views
mysqli stored procedure and update statement
I have problem in updating mysql table. While the problem seems somewhat strange I'm explaining it below.
I am working on user's profile update in which the data from single form is ...
0
votes
0answers
258 views
SqlTransaction after catch transaction connection is null
I have a loop where I call stored procedure with different parameter value.
Next call cmd.ExecuteNonQuery();
I use transaction to save all or rollback, and checkBox2 - save always.
I found one problem ...
3
votes
2answers
186 views
SQL Server - Any better alternative to improve performance of a lengthy transaction with lot of inserts?
I have a scenario where a user action on screen results in new records getting created in about 50 different tables, real-time. The design of the use case is such that the new records that are created ...
2
votes
1answer
388 views
how to prevent convert big numbers as varchar example 1444092 is 1.44409e+006
this is my final query
select Codigo, Indicador,
case when Indicador like '%Porcentaje%' then cast((round((([Valor Censo Elegido]/@cantidad)*100),0)) as varchar(50))+' %' else cast([Valor Censo ...
0
votes
1answer
77 views
SQL Transactions using PHP failure
This is my code. I know this should be easy, but somehow, SQL returns a parse error. Please Help.
$link = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD,DB_DATABASE);
if(mysqli_connect_errno()) {
...
2
votes
3answers
695 views
Does SqlTransaction need to have Dispose called?
Do I need to call dispose in the finally block for SqlTransaction? Pretend the developer didnt use USING anywhere, and just try/catch.
SqlTransaction sqlTrans = con.BeginTransaction();
try
{
...
2
votes
1answer
291 views
SqlTransaction causing application crash on error?
Here's some background: Periodically our site will crash to the point of having to restart IIS; this almost always happens within an hour of patching a DLL (we use a Web Site project, not a Web ...
1
vote
1answer
922 views
SQL Try/Catch logic with nested transactions
The following sproc is implemented in accord with the template in this article: Exception handling and nested transactions. This sproc is supposed to handle deadlocks and it is called by another sproc ...
0
votes
3answers
105 views
Can any one tell whats' wrong in my transaction
Hi all i have written the following transaction to insert data but when i am getting an exception only the data which got the exception not inserting to db the remaining all are inserting
This is ...
0
votes
4answers
158 views
(SQL-T-SQL) Select Command to Have only certain values?
Here is my table app_extra:
AppID;AppExtraID
100;0
100;1
100;3
100;7
100;8
100;9
110;0
110;2
110;4
110;7
110;9
115;0
115;2
115;6
115;8
120;0
120;1
120;10
130;0
130;7
130;8
130;10
140;0
140;1
140;3
...
2
votes
2answers
103 views
Keepalive sql transaction
I have a simple problem with sql transactions. I connect to my database in method A and start a sql transaction. At the end of the method I close the connection, because the calculation (external ...
0
votes
1answer
318 views
How to manage multiple transactions in SQL Server 2005
I'm developing a desktop application in C# with a SQL Server 2005 backend.
I want to insert rows into two tables, in table1 one row will be saved and in table2 more than 100 rows will save at a time. ...
0
votes
3answers
288 views
SQL Triggers - Deleted or Updated? or maybe something else?
I am trying to figure out which i need to use here: deleted, inserted or updated.
basically.
I need to write some data to the history table, when the main table is updated, and only if the status ...
0
votes
3answers
468 views
Conditional SQL Trigger?
i need to create an Update Trigger, that will only work when my record's status is different then the last status recorded.
so i have this right now:
for UPDATE
AS
begin try
INSERT INTO ...
1
vote
1answer
301 views
How to use SQL Profiler Trace File with Dead Lock Events?
I am quite new to using sql profiler. I have a scenario in my application which runs on sql back end where i keep getting dead locks at the same place. I am able to reproduce it very easily. Using the ...
0
votes
2answers
301 views
SqlTransaction and nested transactions
Is it possible to create nested transactions with a the SqlTransaction class? If so, what are the rules/limitations that I need to be aware of?
2
votes
1answer
630 views
SQL Check if exists before update
Hello All I would like to see an example how to check if pappssn exsist in database before the update is complete. If so to raise an error record exsist. My front end is VB however i would like to ...
2
votes
2answers
561 views
Can a SQL “DELETE” statement followed by a “WHERE NOT IN” statement be in same transaction?
If I have the following SQL block (in SQL SERVER 2008 R2):
BEGIN
BEGIN TRAN
DELETE FROM dbo.fooData
WHERE LastUpdate < DateAdd(hour, -1,GETUTCDATE())
COMMIT
BEGIN TRAN
...
0
votes
3answers
551 views
C# TransactionManager
Hi I have a generator which made some automated code (creating all the get, set, etc) for me structured by a Database, in this code there is a piece of code that is as follows:
SqlTransaction ...
5
votes
2answers
535 views
TransactionScope/SqlTransaction timeout extension
Is it possible to extend the timeout of a transaction (with SQL Server) once the transaction has started?
0
votes
1answer
726 views
SQL Log and ACTIVE TRANSACTIONS
I have a Web Server with SQL 2008 running a simulated SQL 2005 db, and I have a local SQL 2005 db for testing environment.
This causes me to use scripts for backup/restoring data for testing as 2008 ...
3
votes
3answers
1k views
SQL SERVER - Understanding how MIN(text) works
I'm doing a little digging and looking for a explanation on how SQL server evaluates MIN(Varchar).
I found this remark in BOL: MIN finds the lowest value in the collating sequence defined in the ...
3
votes
3answers
891 views
How to check if Dotnet transaction is rolled back?
How Can I check if a dotnet transaction is closed or not ?




