Viewing 15 posts - 211 through 225 (of 236 total)
How much storage do you have available? If you do a backup, restore, and delete, unless you shrink the database, the DB in the test environment will still be 500...
February 25, 2014 at 8:35 am
Great thanks.
Unfortunately, the issue I run into is a request to provide numbers for performance enhancement. i.e. "If you do this, how much faster will our system be?" That's very...
February 25, 2014 at 8:23 am
Grant Fritchey (2/25/2014)
The question is, are all the queries the same, but varying by some parameter value? If so, then optimize for...
February 25, 2014 at 8:14 am
Doesn't the execution of thousands of ad-hoc queries bloat the procedure cache? I though that would cause some performance degradation.
February 25, 2014 at 7:54 am
Thanks to both of you. I'm going to start testing log shipping.
January 7, 2014 at 11:35 am
george sibbald (1/6/2014)
http://msdn.microsoft.com/en-us/library/ms190202(v=sql.100).aspx
http://technet.microsoft.com/library/Cc917680
Do you have standard or enterprise edition? To make the secondary databases readable with mirroring you need enterprise edition so you...
January 6, 2014 at 4:07 pm
Thank you both for the responses.
(12/30/2013)
Such as?Why did you feel that LS was not a viable route?
My concern has to do with contact backups on the primary database, transmissions...
January 6, 2014 at 11:57 am
Unfortunately, it's none of those issues. However, I did notice something new.
I removed the stored procedure from my original large procedure as it's not necessarily needed, but it does fix...
September 23, 2013 at 6:50 am
I was able to grab the specific code that's causing the problem, here you go,
USE [ARCHIVE]
GO
/****** Object: StoredProcedure [dbo].[SP_Archive_Cleanup] Script Date: 09/20/2013 22:54:57 ******/
SET ANSI_NULLS ON
GO
SET...
September 21, 2013 at 12:00 am
Sean Lange (8/7/2013)
JoshDBGuy (8/7/2013)
August 7, 2013 at 3:08 pm
mhg1063 (8/7/2013)
SELECT TOP 1000 [RequestID],cast([Request]as xml) as test
,cast( [Request] as xml).value('(Request/AccountNumber)[1]', 'Varchar(9)') as AccountNumber
FROM [log]
Returns Null for the accountnumber
Can you send me your results for the initial cast? Inserted...
August 7, 2013 at 2:52 pm
Within the loop there are multiple transaction statements. Because these are all very dependent on one another i'd like the loop to stop completely and not insert or delete any...
August 7, 2013 at 2:44 pm
Sean Lange (8/7/2013)
JoshDBGuy (8/7/2013)
I have a question behind the logic of Try and Catch. I'm using Try Catch in a complex statement with a While Loop. If I put...
August 7, 2013 at 2:32 pm
Remove the @ from @AccountNumber
August 7, 2013 at 2:27 pm
Do you care how you extract the account number? If you just need the account number you could simply use a substring.
August 7, 2013 at 1:31 pm
Viewing 15 posts - 211 through 225 (of 236 total)