Viewing 15 posts - 11,731 through 11,745 (of 14,953 total)
As far as memory leaks go, I'd look at anything other than SQL running on that server. Are there any other services (other than necessary Windows ones) running? ...
January 7, 2009 at 7:00 am
My worst office is easier to pick out than my best. The worst, by far, was when my "office" was a desk in the server room, because the company...
January 6, 2009 at 3:17 pm
The way the trigger is written will definitely have performance implications. The question of whether or not to write a trigger is based on policy. How to write...
January 6, 2009 at 3:08 pm
For a full list of what editions have which features, check:
http://www.microsoft.com/sqlserver/2005/en/us/compare-features.aspx
January 6, 2009 at 3:04 pm
Glad we could help. You're welcome.
January 6, 2009 at 2:56 pm
No problem on the lack of expertise. We all have to start that way, I just beat you to it by a few years!
SSIS is "SQL Server Integration Services",...
January 6, 2009 at 2:55 pm
littlebeeper110 (1/6/2009)
January 6, 2009 at 2:45 pm
To clarify, the decision as to whether to include it in a trigger or not is based on coding needs, not on performance.
If the table will ever be updated through...
January 6, 2009 at 2:41 pm
If you truly are limited only to dashboard reports, it sounds like you're on the right track as to how to use them.
On the other hand, why would you be...
January 6, 2009 at 2:37 pm
Just had another thought. You could accomplish much the same thing as the complex join statement by using an Except query between inserted and deleted and then joining to...
January 6, 2009 at 2:33 pm
Marios Philippopoulos (1/6/2009)
GSquared (1/6/2009)
On the point of making sure the inserted and deleted tables are different, a trigger can look like this:
update MyTable
set LastUpdate = getdate(), LastUpdateBy = user
from...
January 6, 2009 at 2:29 pm
It's not a question of the type of join being used. It's a question of whether SQL Server thinks the indexes will help or not.
If, for example, you're joining...
January 6, 2009 at 2:21 pm
J (1/6/2009)
instead of in an outer queryYup. I drifted away from the original question.
Because if it's not in the outermost query, you can't guarantee it will work. Might, might...
January 6, 2009 at 2:17 pm
I'm not totally clear on what you're asking, but it seems to me that you're updating a view and trying to figure out how to get that to update the...
January 6, 2009 at 1:43 pm
GilaMonster (1/6/2009)
GSquared (1/6/2009)
January 6, 2009 at 1:39 pm
Viewing 15 posts - 11,731 through 11,745 (of 14,953 total)