Viewing 15 posts - 3,541 through 3,555 (of 5,103 total)
I would drop and recreate those indexes. No need for anything like DBCC DBREPAIR !
June 27, 2005 at 12:42 pm
LADP is the right way and yes you can use it for that. Have a look at:
http://msdn.microsoft.com/library/en-us/adsi/adsi/distributed_query.asp?frame=true
http://support.microsoft.com/default.aspx?scid=kb;en-us;299410
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/distributed_query.asp
Now if you can't use it because you still don't have...
June 27, 2005 at 11:15 am
Distributed transactions on a trigger is a "no-no". If the Trigger fails i has to rollback an distributed and a local transaction and on top of that KILL the batch...
June 27, 2005 at 11:07 am
dbrecover???? Is that a custom procedure?
Definitely not something built-int!
June 27, 2005 at 10:43 am
And to keep adding wood to fire ALL DW implementation (That I have dealt with) use surrogate Identity Keys, can you guess why?
June 27, 2005 at 10:37 am
The answer is to use either Local Access Tables or Unbound forms with vb Classes.
You are goin to have probles if you try bound forms with Linked SQL Tables this Topic...
June 27, 2005 at 10:24 am
sp_updatestats is good when you need something for ALL tables,
the UPDATE STATISTICS gives you finer control (Just the one you need
)
and BTW
Maintenance...
June 27, 2005 at 10:12 am
Ok what is happening is that the auto create statistics process can't catch up with the amount of changes.
You must schedule :
UPDATE STATISTICS ( WITH FULLSCAN) at off hours to compensate for that!
how...
June 27, 2005 at 9:57 am
Yes I agree with this part:
They produce different result times based on the distribution of the Initial Set of Numbers
The part I was differing with was:
which you...
June 27, 2005 at 9:52 am
2 Questions.
1. Do you have the DB with auto create statistics on!
2. Does the Base Table of that view change very often ? (lots od DML on it)
June 27, 2005 at 9:47 am
breadth-first or deph-first they have the same cost. They produce different result times based on the distribution of the Initial Set of Numbers which you can't control
I tend to differ...
June 27, 2005 at 9:40 am
OR:
-- create table Suppliers( SUPPLIER char(5),PRODUCT varchar(5),QTY_IN_STOCK int)
--
--
--
--
-- insert into Suppliers (SUPPLIER, PRODUCT, QTY_IN_STOCK) values('SUPP1', 'a1' , 5)
-- insert into Suppliers (SUPPLIER, PRODUCT, QTY_IN_STOCK) values('SUPP1', 'a2'...
June 27, 2005 at 9:24 am
Tough question.
Make sure you understand how MS ACCESS works
Minimize the records you pulldown to Access
Separate the jobs that can be done better in the server from those that can be...
June 24, 2005 at 2:28 pm
It has always been docummented ![]()
From BOL:
CREATE PROC [ EDURE ] [ owner. ] procedure_name [ ; number ]
[ {...
June 24, 2005 at 2:08 pm
Viewing 15 posts - 3,541 through 3,555 (of 5,103 total)