Viewing 15 posts - 106 through 120 (of 120 total)
I'm in a similar spot. I wouldn't expect the optimiser to look at any tables except the one(s) that I specify in the where clause on the partitioning column, but...
June 13, 2006 at 7:41 am
Here's an update... I checked out the estimated query plan for one of the queries that I'm trying to get to use the VW_REVENUE view and it's not considering the...
June 13, 2006 at 6:50 am
ABOVE AND BEYOND. Thanks a heap you guys. I'll have something in place today and I'll update this string with deets.
Thanks again fellas.
Greg
June 7, 2006 at 5:46 am
Thanks David, but I think a "NOT EXISTS" subquery for millions of rows and 30+ columns will take too long for my sitch. I remember MINUS was pretty quick for...
June 6, 2006 at 1:05 pm
nice. Thanks. that's what I'm looking for Philip.
June 6, 2006 at 5:16 am
I appreciate the idea Sergiy, but...
Setting up one table from the partitioned tables alone is too tall of an order. Spacially, we can't afford it, and it would probably take...
June 1, 2006 at 5:29 am
thanks gang. I'm going to go with grambow's idea of partitioned views on the partitioned tables. this makes the whole "last_2" thing a moot point. I'll just include the partition...
May 31, 2006 at 9:25 am
Thanks Kenneth, but that's not a viable solution. Each month has about 400,000 rows, and the data goes back to 2002-01-01, so having one main table would make things too...
May 31, 2006 at 8:25 am
Thanks Ray, but I'm really looking for a "rule of thumb" when it comes to creating an index when you already have an exact query in mind.
I understand that higher...
May 31, 2006 at 7:32 am
NEVERMIND! I GOT IT!!!
I had to switch the output param name with the local variable:
DECLARE @paramdef NVARCHAR(128)
DECLARE @cmd NVARCHAR(512)
DECLARE @a INT
SET @cmd = N'SELECT * INTO...
November 28, 2005 at 2:34 pm
Thanks Sergiy, but nothing in the 4 subtopics under sp_executesql in my BOL about "output" params
Here's what I've fabricated so far and it's not working:
DROP TABLE zzzgregtemp
GO
DECLARE @paramdef NVARCHAR(128)
DECLARE @cmd...
November 28, 2005 at 2:27 pm
thanks Mike, but this yields the scoping issue I can't get around. I need to be able to do something with the value of @@ROWCOUNT, so I can't just...
November 28, 2005 at 12:50 pm
nice. that did the trick. and you're right, I was looking for the tables that *could* have exceeded the 8060 limit.
I was getting some system tables (some are...
October 6, 2005 at 9:35 am
Debugger can be frustrating. Keep this command around. It doesn't sound like your problem, but it's helped me out before. Not in BOL, but I'm sure the heads here could...
August 26, 2004 at 7:50 am
SQLBill has it. Maybe the full recovery model isn't for you? Could you bcp-ify the portion of the DTS package that is causing the tlog growth? That way you could...
August 16, 2004 at 2:15 pm
Viewing 15 posts - 106 through 120 (of 120 total)