Viewing 15 posts - 1,216 through 1,230 (of 7,429 total)
First off it is a very good article and pointed out something I never noticed before.
But I do agree with Chris.
Only when the name of the executing SP was...
March 10, 2005 at 7:22 am
This was written for Eastern Time Zone and does take into account the diff between ST and DST
CREATE PROCEDURE Convrt_GMT_To_Eastern
@DateIn datetime,
@DateOut datetime OUTPUT
AS
--This Code Converts GMT to Local Time
Declare @DateUse...
March 10, 2005 at 6:57 am
Can you post your current DDL for both tables. I need to understand what you have. For me I have a column for last modified by and a last modified...
March 10, 2005 at 6:15 am
And I almost ought a 60 inch recently. Guess I will just wait a bit longer for the 32 foot models and charge admission.
March 9, 2005 at 7:29 pm
You might want to explore differential backups or if you have some tables for say historical purposes and some for the live transaction consider a file group stratagey where you...
March 9, 2005 at 7:20 pm
Beyond the previous I suggest look in the Windows Event Viewers logs to see if anything unusal. Could also be a network setting at either NIC or somewhere in between....
March 9, 2005 at 7:16 pm
There was a really good discussion on this about 4months to a year ago. Sorry do not have the link right off.
March 9, 2005 at 7:13 pm
I have done it on a live server before but as mentioned the files are in an open state unless you have the auto close feature on (which I don't...
March 9, 2005 at 7:09 pm
Yes you should consider your wording very cerfully. However that said what software are you referring to? If SQL Server the evaulation is 120 days not 30. And it is...
March 9, 2005 at 6:18 am
Let's just say, it all depends. Look at the execution plan and test both. Sometimes one way works best, sometimes the other.
March 9, 2005 at 6:15 am
First I can guarantee the Server will outperform the desktop overall. But it could be factors of the cahce being populated already, distance data travels across network, network bandwidth. Try...
March 8, 2005 at 4:15 pm
Watch the server with Profiler and see what is coming in for the SQL statement. May be something you haven't accounted for that revolves around the way you are doing...
March 8, 2005 at 4:11 pm
I don't know a specific limitation in the IN clause but I can tell you there is a point a really long typed IN list will actually hurt performance. I...
March 8, 2005 at 7:26 am
When you day it crashed what are you meaning. Was it an OS failure, hardware, other?
March 8, 2005 at 6:34 am
First off TempDB is used in a lot of operations as a scratch pad so never assume it is not being used by your statement.
From the statement it sounds like...
March 7, 2005 at 12:58 pm
Viewing 15 posts - 1,216 through 1,230 (of 7,429 total)