Viewing 15 posts - 3,556 through 3,570 (of 5,103 total)
check the "owner" of the views and the login you are using to connect through EM
* Noel
June 24, 2005 at 2:03 pm
Yes the ; in that case is the VERSION of the stored procedure.
This is an old ODBC standard and I don't recommend it to use because tools like QA or EM hide...
* Noel
June 24, 2005 at 1:48 pm
if data and log are on the same partition you have the first problem there.
Filesize is not as much an issue as TABLE size
and you coud try to increase...
* Noel
June 24, 2005 at 1:44 pm
I don't fully understand your logic for all cases but this may put you in the right Track:
select
Project,
EventID,
DateAdd( day,
(select sum(Leadtime)
from yourtable t2
where...
* Noel
June 24, 2005 at 1:40 pm
29GB does not sounds that big!
what RAID level do you have?
how many spindles/disks are you using on the RAID?
do you have the log in a separated drive?
are indexes Ok...
* Noel
June 24, 2005 at 1:17 pm
not sure about database name but:
select db_id() -- gives you the number you need when runned on the desired db
* Noel
June 24, 2005 at 1:12 pm
Is not that is redundant is that because you only have let's say AVG for lets say 10 , 20 and 200 spans it makes sense to compute ahead of...
* Noel
June 24, 2005 at 12:44 pm
My position is:
if you can avoid the use of nulls you must do it! nulls are bad and can give you many headaches when quering
* Noel
June 24, 2005 at 10:55 am
PRECISELY!
the downside side is that selectivity will be affected because you are going to have some duplicates. If the duplicates are a lot ex: a column with on very few...
* Noel
June 24, 2005 at 10:51 am
You should Follow the above approach but swap the order of operations:
abs(sum(a.correct))
-- abs performed once
* Noel
June 24, 2005 at 10:42 am
from you previous post:
Create unique nonclustered index ...
The error you are getting indicates that you have DUPLICATES on a column that you are specifiying as unique
You must Either "check the...
* Noel
June 24, 2005 at 10:38 am
like it or not is a two step process.
If you try to script the profiler settings when performing table output it will write this line in the script:
--...
* Noel
June 24, 2005 at 10:31 am
Viewing 15 posts - 3,556 through 3,570 (of 5,103 total)