Viewing 15 posts - 991 through 1,005 (of 1,415 total)
Grant Fritchey (12/15/2014)
So, use your bosses approach on 3-5 different...
December 15, 2014 at 7:16 am
triggers? foreign key constraints? ok out of ideas!
December 9, 2014 at 2:52 pm
I wonder if 'NO_TRUNCATE' part of the command keeps these tlog records active, and they just accumulate? Whats the reason for using 'NO_TRUNCATE' in your case, just curious!
December 4, 2014 at 2:07 pm
they look like differentials since theres not one instance of them decreasing in size.
December 4, 2014 at 1:55 pm
How about something like this:
DECLARE @ID INT, @DAT VARCHAR(100)
SET @ID = 1
SET @DAT = 'TEXT 1'
INSERT INTO TEST1
SELECT @ID, @DAT
WHERE NOT EXISTS (SELECT ID FROM TEST1 WHERE ID = @ID)
SELECT...
December 3, 2014 at 1:37 pm
DennisPost (11/26/2014)
Even completely removing the order by doesn't help.:(
Yeah that does sort of indicate that 257 million rows is a bit of data to push through looking for nearby neighbors....
November 26, 2014 at 12:54 pm
Right off hand, you might want to try to convert that function into an inline calculation. Other experts might give better advice, but it might be the case that multiline...
November 26, 2014 at 8:07 am
Also check out this link: http://msdn.microsoft.com/en-us/magazine/jj133823.aspx
This talks about putting locations into "sectors" to chip away at the efficiency problems, maybe you can get some insight into some of the issues...
November 25, 2014 at 11:44 am
Post your data as all text, as insert statements into your demonstration tables. Obviously, works best if you don't post zetabyte databases this way LOL just post a sample set...
November 25, 2014 at 7:48 am
ZZartin (11/21/2014)
g.britton (11/21/2014)
ScottPletcher (11/21/2014)
You don't "have" to do the FETCH twice. In fact, I never do that, because it's too error prone when the code is changed.
good point, though...
November 24, 2014 at 11:50 am
Gary Varga (11/18/2014)
Stefan Krzywicki (11/18/2014)
If you really want to...
November 18, 2014 at 9:44 am
Eric M Russell (11/18/2014)
patrickmcginnis59 10839 (11/18/2014)
Ed Wagner (11/18/2014)
Eric M Russell (11/18/2014)
November 18, 2014 at 9:33 am
Ed Wagner (11/18/2014)
Eric M Russell (11/18/2014)
November 18, 2014 at 9:06 am
Brandie Tarvin (11/11/2014)
November 11, 2014 at 7:40 am
ShineBoy (11/10/2014)
November 10, 2014 at 2:02 pm
Viewing 15 posts - 991 through 1,005 (of 1,415 total)