Viewing 15 posts - 18,061 through 18,075 (of 18,926 total)
I have auto-update stats on and I still have to recreate the stats manually every once in a while (happenned 2 times last year). And I know many dbas...
April 22, 2005 at 7:38 am
My and Noeld's anwser still won't change about this. Use a sp without the view and you'll be all set.
April 22, 2005 at 6:32 am
You probabely know what an index does and what it is used for. Statistics are indexes that sqlserver creates when you run queries so that a sort or a...
April 22, 2005 at 6:19 am
Unless you have a trigger that keeps track of the changes, you'll have to buy a log explorer software to extract that info. Sql server doesn't keep track of...
April 22, 2005 at 6:16 am
This query is way to simple to try to do something fancy with it... I'd just create a proc with the full select statement. Don't forget that the indexed...
April 21, 2005 at 12:57 pm
You can also take in consideration that this operation can be done at the select level (if you're not sure you want to alter the underlying data).
April 21, 2005 at 11:43 am
SELECT i.ITEM_NO, MAX(ITEM_VEND_ID)
FROM ITEM_VEND iv,
ITEM i
...
April 21, 2005 at 11:39 am
You want a cartesian result that is not cartesian????????
April 21, 2005 at 10:10 am
I totally agree with you but the execution plan still shows a smallish difference between the 2 plans... but then again this is unrealistic data so I would read a...
April 21, 2005 at 8:04 am
I checked the execution plans for each query, the first one by Carl has a cost of 49.92% vs 50.08% for Hariharan. But without the real indexed data it's...
April 21, 2005 at 6:28 am
You can either create a stored proc (best solution) or replace the apostrophe with a double apostrophe
if you try this statement you'll see that it works just fine :
insert...
April 20, 2005 at 3:07 pm
I'll let the real experts answer that one. I was just bouncing ideas so you could start to see the big picture. If the system is well normalized...
April 20, 2005 at 3:04 pm
How long does it take to run the queries on you current server (even if it's only test or dev.)..
cause unless you have a single table with 40gig of data...
April 20, 2005 at 2:53 pm
I'm not prettending I can answer that question, but here's a few question you could ask yourself :
Are you gonna have very complex/ io intensice queries?
How many users or...
April 20, 2005 at 2:36 pm
Viewing 15 posts - 18,061 through 18,075 (of 18,926 total)