Viewing 15 posts - 18,376 through 18,390 (of 18,926 total)
Try running this statement in any database
Select name, count(*) from dbo.SysObjects where name like 'sys%' group by name
the only thing different is that I used ' instead of ’.
If that...
March 16, 2005 at 7:24 am
I have 0 experience in this context. But I assume that the data must be refreshed pretty often and by multiple users... I think you'll have to come...
March 15, 2005 at 11:22 am
<>
BTW the update would have taken about 10.5 days to complete (assuming nothing major would have slowed it down further like a huge transaction log growth).
I was wondering if you...
March 15, 2005 at 11:02 am
Sounds more like it... From incomplete after 2 days to 14 secs... how many folds are we talking about here??
March 15, 2005 at 10:49 am
Yes there's a way but I don't see why you would want to do this in this case. I'm under the impression that you are trying to do some...
March 15, 2005 at 10:48 am
Actually my demo is meant to be used like this :
Select Col_id, Col1 from dbo.MyTable where
(MyField = @MyField or @MyField = 'All')
and
(MyField2 = @MyField2 or @MyField2...
March 15, 2005 at 6:23 am
Could you post the final script so that people that come across the same problem can see the working solution?
March 15, 2005 at 6:14 am
Assuming you have 300 000 records in each table
FROM
contact2, contact1
WHERE contact2.accountno = contact2.accountno
and contact2.accountno...
March 14, 2005 at 2:50 pm
NP... hopefully someone else will be able to find you problem.
Good luck.
March 14, 2005 at 1:22 pm
this is a complete guess ... but may it be that MORE 'middletier2_log' should be MOVE 'middletier2_log'
(I never did this so I might be completly off here)
March 14, 2005 at 12:41 pm
I would check the execution plan of the function and check for scans and try to turn then into seeks... it's the most likely reason for your slowlyness.
March 14, 2005 at 9:21 am
can't answer for sure... but I'd assume time clock... since there's a column for the cpu cycles.
March 14, 2005 at 9:19 am
I haven't read all the procs but here's my rule of thumb :
If I have different select statements (the columns changes, or the joins change), then make difference sps...
March 14, 2005 at 9:17 am
I think you're better off making 3 columns : first, last and middle name and split that column into those 3, then you can join those however you want in...
March 14, 2005 at 9:13 am
Viewing 15 posts - 18,376 through 18,390 (of 18,926 total)