Viewing 15 posts - 10,741 through 10,755 (of 18,923 total)
GO
SET SHOWPLAN_ALL ON
GO
DECLARE @demo TABLE (ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY CLUSTERED)
INSERT INTO @demo DEFAULT VALUES
INSERT INTO @demo DEFAULT VALUES
INSERT INTO @demo DEFAULT VALUES
INSERT INTO @demo DEFAULT VALUES
INSERT INTO...
December 5, 2006 at 6:55 am
BTW, this doesn't work either
:
CREATE TABLE #Demo
(
ID INT NOT NULL IDENTITY (1,1)
)
GO
ALTER TABLE #Demo
ALTER COLUMN ID INT NOT NULL IDENTITY(200,2)
GO
DROP TABLE...
December 5, 2006 at 6:45 am
Holly crap, I'd like to see that statement.
4096 colums from 256 tables , 10 M rows each, no index all heaps
!
December 5, 2006 at 6:42 am
Hey Sergiy, I'm guessing you are using this method for performance. Is you're math version faster that my varchar version (no time to set up a test
December 5, 2006 at 6:39 am
What I was suggesting with a set based aproach was to process all rows with a single update statement. Or if the operation was too big, then break it into...
December 5, 2006 at 6:38 am
I already ported an application from FoxPro (not even sure of the name but it used lists too). I had to take a few hours to create a lookup table...
December 5, 2006 at 6:34 am
are you really talking about the physical file size or the space used in the log file??
December 5, 2006 at 6:31 am
So you're already past 25 year old too Sergiy?
![]()
![]()
![]()
December 5, 2006 at 6:22 am
I guess someone had the same unfortunate problem as this one and worked for a few days for digging out the answer
.
December 5, 2006 at 6:20 am
That happens when the server has no statistics or outdated statistics. As you did, using a temp table with a clustered index created statistics for that table, hence removing the...
December 5, 2006 at 6:19 am
Doesn't help me... maybe someone else may have something.
Good luck with that!
December 4, 2006 at 3:06 pm
Even an orable DBA could answer this one.
THREAD CLOSED!
December 4, 2006 at 3:05 pm
Viewing 15 posts - 10,741 through 10,755 (of 18,923 total)