Viewing 15 posts - 1 through 15 (of 182 total)
I was worried about my Range Value in the Partition Function. I thought that the data from 2011 wont be storage 'cause the range value. So I only need to...
December 29, 2010 at 1:18 pm
I do understand it. it sounds good. But that means that I need to re-create the entire shceme structure that I already have. The reason I did a monthly one...
December 29, 2010 at 7:50 am
How long does it take to do a select into?
it takes 2 seconds
How long does it take to insert in the base table if you disable...
November 24, 2010 at 12:28 pm
actually, it takes only 22 seconds.. the problem is the insert 🙁
November 24, 2010 at 11:38 am
So the problem here is that the server becomes unavailable for 4-6 minutes whenever you do this?
i dont really care that much if the server becomes unavailable for 4-6minutes, because...
November 24, 2010 at 11:33 am
thank you all.
i will try every option to evaluate business requirements.. these deletions has to be done through a UI where it cant take more than 10minutes to process..
thank...
November 22, 2010 at 1:40 pm
It can be 3 million rows of 6 or 9 million rows (no more).. my cluster index can be the ID
November 22, 2010 at 1:32 pm
This table will be work as a Bulk table, it will contain data that will be used in the next step of a big process. As soon as the data...
November 22, 2010 at 1:23 pm
oh that was easy.. I wasnt sure about the option cause in the Job I have 4 steps..
but it worked for me..
Thank you very much !
November 18, 2010 at 12:08 pm
Yes!
I need to show the 86400 seconds, even in the total of jobs are 0.
the result set that I sent it was only a sample to show all of...
November 4, 2010 at 3:48 pm
I GOT IT
CREATE TABLE #jobs
(
SubJobIDINT
, [Started]DATETIME
, [Finished] DATETIME
)
DECLARE
@SDateTime DATETIME,
@EDateTime DATETIME ;
SELECT
@SDateTime = '2010-06-04 00:00:00', --'11/4/10',
...
November 4, 2010 at 3:19 pm
PK is the SubJobId (for other queries)
and the index that I added for this kind of query is
Started, Finished, SubJobID
November 4, 2010 at 3:00 pm
it really takes long time to execute 🙁
November 4, 2010 at 2:52 pm
Okay... Im working on SQL Server 2005 and this will be the result sample that I need:
note: I only compare one minute of my entire table, but i will need...
November 4, 2010 at 1:40 pm
Viewing 15 posts - 1 through 15 (of 182 total)