Viewing 15 posts - 24,841 through 24,855 (of 26,486 total)
Adam Bean (4/24/2008)
SELECT
NameType
,LastName
,FirstName
,MiddleName
,EndName
,NameKey
FROM tbl1 t1
INNER JOIN tbl2 t2
ON t1.NameKey = t2.NameKey
I've tried my index two ways:
CREATE...
April 25, 2008 at 7:17 am
rlondon (4/24/2008)
April 25, 2008 at 7:05 am
I started looking at your query, and honestly, I gave up. You have a lot of subqueries that could be eliminated using joins in your FROM clause that would...
April 25, 2008 at 7:01 am
A trigger runs in the context of the transaction that fires it. If the trigger fails the whole transaction fails and rolls back.
April 24, 2008 at 12:57 pm
Found another WHERE clause that should be changed:
where year(ml.data)=2008
to:
where ml.data >= dateadd(yyyy,datediff(yyyy,0,ml.data),0) and ml.data < dateadd(yyyy,datediff(yyyy,0,ml.data) + 1,0)
This would use the index I suggested in my previous post as well.
😎
April 24, 2008 at 11:58 am
Here is my thoughts from a quick scan of your code:
If the following index does not exist, I would create it:
create index IDX_Balance on dbo.ml (
data...
April 24, 2008 at 11:22 am
Gail,
Thanks for jumping in on this and doing some testing. I tried to set up a test myself, but my mind wasn't working right and the test data I...
April 24, 2008 at 5:24 am
Steve F. (4/22/2008)
April 22, 2008 at 1:46 pm
I agree, check out all the products, and select the best one based on price, performance, ease of use, support, and what ever other criteria management might throw in. ...
April 22, 2008 at 1:35 pm
On the free side, we are using gzip. It works well also. we are using it to zip text files prior to being ftp'ed to a MSP.
😎
April 22, 2008 at 1:05 pm
Based on what I have read regarding Microsofts licensing, nope. With that number of users, per processor is the best way to go.
😎
April 22, 2008 at 1:00 pm
Not really, substitute the pricing for EE (approx $25K per processor), or for Oracle (I don't even feel like computing that).
The key to deciding whether to purchase per processor or...
April 22, 2008 at 11:02 am
Microsoft goes by physical processor, not cores, so your server has 4 processors.
😎
April 22, 2008 at 9:52 am
Viewing 15 posts - 24,841 through 24,855 (of 26,486 total)