Viewing 15 posts - 2,116 through 2,130 (of 3,348 total)
Okay, I was unaware of this limitation (though I have no idea why anyone would ever even WANT to do a differential backup on master!), so I guess I learned...
May 29, 2012 at 1:03 am
roger.plowman (5/23/2012)
And when I say "application" I mean an external application competely seperate from SQL Server.
If you want the application to be outside SQL Server, you should avoid all programmability...
May 23, 2012 at 2:27 pm
mtassin (5/23/2012)
May 23, 2012 at 7:48 am
mtassin (5/23/2012)
But this would also work as though xact_abort is on 🙂
BEGIN try
begin TRANSACTION
INSERT qotd2(col1,col2,col3) VALUES (1,'x','some')
INSERT qotd2(col1,col2,col3) VALUES (1,'Y','thing')
INSERT qotd2(col1,col2,col3) VALUES (2,'Z','or other')
COMMIT
END TRY
BEGIN CATCH
ROLLBACK
END catch
SELECT * FROM qotd2
No,...
May 23, 2012 at 7:11 am
roger.plowman (5/23/2012)
Explicit transactions should be exactly that, explicit. This stupidity is exactly the kind of...
May 23, 2012 at 7:09 am
Neil Thomas (5/23/2012)
So that means that when xact_abort is set to off thenBEGIN TRANSACTION
...
COMMIT TRANSACTION
does not do as expected.
What's the default setting on a fresh install of SQL?
I guess...
May 23, 2012 at 2:21 am
archie flockhart (5/22/2012)
May 22, 2012 at 10:04 am
SQL Kiwi (5/22/2012)
This is the point that I came here to make (and as usual Hugo arrived earlier).
Sorry, Paul... :Whistling: (You can always try blaming time zones - though...
May 22, 2012 at 8:48 am
archie flockhart (5/22/2012)
May 22, 2012 at 2:46 am
Good question (though a bit old - I think we've had lots of questions about this subject already). But not a good explanation.
There is no data type conversion. Both operands...
May 22, 2012 at 12:58 am
wdolby (5/18/2012)
May 18, 2012 at 6:44 am
bitbucket-25253 (5/17/2012)
May 18, 2012 at 6:07 am
wdolby (5/17/2012)
May 17, 2012 at 3:40 pm
Thomas Abraham (5/16/2012)
Hugo Kornelis (5/16/2012)The only way I can reproduce what you are seeing, both on SQL Server 2008 R2 (I don't have 2008 vanilla) and on SQL Server 2012,...
May 16, 2012 at 6:36 am
Thomas Abraham (5/16/2012)
Hugo Kornelis (5/16/2012)No idea what went wrong. I copied and pasted the code above, hit execute, and got two rows back. SQL Server 2012. What version are you...
May 16, 2012 at 6:12 am
Viewing 15 posts - 2,116 through 2,130 (of 3,348 total)