Viewing 15 posts - 1 through 15 (of 41 total)
Regarding the type of file growth increment to use, it depends upon your database traffic. Ideally, you should not have to continuously have your database autogrow so if your autogrowth...
March 11, 2015 at 3:40 pm
Maybe this will help you.
declare @Desired_CustomerID int
select top 6500 @Desired_CustomerID = CustomerID
from dbo.Customer
order by CustomerID
select @Desired_CustomerID
That should return the CustomerID of the 6500th record.
August 16, 2005 at 10:12 pm
Unfortunately, I haven't solved the problem. A month after my original post, I left the job and am now not a database administrator (I moved over to development). Good luck!
February 14, 2005 at 6:30 am
Thank you for the suggestion. I'll try that. I wanted to also note, as I have been fiddling with this all day, that I ran each query individually and I...
June 16, 2004 at 1:44 pm
The transaction log prior to the one that fails is always successful. I don't see a real pattern to when the backup fails. It happens at all times during the...
June 16, 2004 at 1:39 pm
Hi Amol,
There is a two column clustered index already existing in billing.dbo.payments and it is on paymentid and scpoolid.
Thanks!
June 16, 2004 at 9:56 am
Here is the entire procedure as it was prior to any testing. The first insert into the recon table is where my headache appears to be located. I am currently...
June 16, 2004 at 8:33 am
Thank you for all of your replies. I actually added indexes to the temporary tables yesterday and now the procedure takes 2 hours and 50 minutes!
June 16, 2004 at 6:22 am
Hi Andy,
Great! That makes some sense. Thanks for clarifying.
Melanie
February 20, 2003 at 1:17 pm
Hello,
The fill factor is 80%.
Can you please explain how this could be the cause? I guess I'm confused because I thought that with deleting half a million records, the...
February 20, 2003 at 12:50 pm
Hi Andy,
Thank you so much!! You allowed me to continue to telecommute every Fridays (can't give that up!).
Thanks!!
Melanie
January 8, 2003 at 6:16 pm
Hi Juanita,
In our environment, SQL Server is only rebooted when the server itself needs to be rebooted. Otherwise, in our 24x7 shop, SQL Server always needs to be up...
December 17, 2002 at 12:34 pm
Hello,
Well, our network guy decided to defrag all of our systems and so far we haven't experienced any TDS errors again... and hope we never do. We did not...
December 17, 2002 at 12:22 pm
Hello Antares686,
Thank you very much for your recommendation. I'll try this and let you know how it goes.
Melanie
December 9, 2002 at 6:27 am
Hi Steve,
I just thought the VBScript would be more difficult than it actually is. I just tried it and the script worked perfectly.
Thanks!
Melanie
November 13, 2002 at 11:55 am
Viewing 15 posts - 1 through 15 (of 41 total)