Viewing 15 posts - 4,321 through 4,335 (of 7,168 total)
MisLead (4/24/2012)
opc.three (4/24/2012)
MisLead (4/24/2012)
opc.three (4/24/2012)
MisLead (4/24/2012)
I could see if you wanted to tear apart ? into two separate...
April 25, 2012 at 4:25 pm
GilaMonster (4/25/2012)
opc.three (4/25/2012)
GilaMonster (4/25/2012)
opc.three (4/25/2012)
Yes. If the error was such that it left the transaction in a state where it cannot be rolled back
A transaction can never be in a...
April 25, 2012 at 4:01 pm
GilaMonster (4/25/2012)
opc.three (4/25/2012)
Yes. If the error was such that it left the transaction in a state where it cannot be rolled back
A transaction can never be in a state where...
April 25, 2012 at 3:16 pm
Yes. If the error was such that it left the transaction in a state where it cannot be rolled back, or another inner proc already rolled the transaction back, then...
April 25, 2012 at 2:06 pm
weiwei_huang (4/25/2012)
I am new to SSIS. I hope someone can help me and provide SSIS solution for the following requirements:
I need to loop through the following table each month to...
April 25, 2012 at 1:52 pm
You would need to use a UNION ALL to generate a row containing your column headers, like this:
EXEC msdb.dbo.sp_send_dbmail
@recipients = 'OPC@DOMAIN.COM',
@subject...
April 25, 2012 at 1:46 pm
Here is a generic create proc template for you that implements TRY/CATCH for exception handling, as the article Gail provided alludes to as the preferred way to implement error handling...
April 25, 2012 at 1:33 pm
An interesting tidbit...have a look around this page for "bpool_visible"
April 25, 2012 at 12:36 pm
Any memory DMV experts out there with a minute to have a look?
April 25, 2012 at 12:31 pm
Items like this do not show up in the Default Trace so unless you had some other trace or Extended Events session running to capture activity where you could correlate...
April 25, 2012 at 12:09 pm
Sorry, my VS2008 is acting up and I am getting the dreaded "Unspecified error" when trying to access a mocked up Excel file to make your examples work. The examples...
April 25, 2012 at 12:02 pm
I say 24 because I think bp_visible is the amount SQL Server in theory could allocate per the VAS on the server and 192 - 168 = 24...so in theory...
April 25, 2012 at 11:31 am
What else is running on the server? Can you account for 24GB of committed memory from processes other than SQL Server's buffer pool?
April 25, 2012 at 11:04 am
PS Automatic failover is not supported in Async mode and either way, with mirroring you have to manually keep your logins and other instance-level objects and settings synced.
April 25, 2012 at 10:52 am
Have a look at the execution plans. The use of .query adds looping in the first query which explains why it takes so much longer. Both run the CROSS APPLY...
April 25, 2012 at 10:48 am
Viewing 15 posts - 4,321 through 4,335 (of 7,168 total)