Viewing 15 posts - 11,791 through 11,805 (of 14,953 total)
Without more data, the main thing I can suggest is, make sure it's a covering index that you're using.
In other words, if there are columns in the Select clause that...
December 5, 2008 at 8:56 am
I've had false positives on that column. I haven't investigated why, but I've found stored procs that had no changes, but where the "last modified" in the system view...
December 5, 2008 at 8:37 am
I might take it one step further and, instead of a reporting table with a clustered index, I might use an indexed view. It would depend on how the...
December 5, 2008 at 8:31 am
I use trace logs and trigger-based auditing. (I even wrote articles about it for this site last summer.) I've found those to be quite adequate to my needs.
I...
December 5, 2008 at 7:31 am
In Control Panel, under Add/Remove Software, you have the option of installing more/less Windows features. You would add IIS through that.
December 5, 2008 at 7:17 am
I have to do this kind of thing all day every day (actually, I have automated procedures that do exactly this). Since I work for a direct mail company,...
December 4, 2008 at 3:48 pm
I'm assuming you've already got the basics, like normalization and table design, from DB2, so the main thing for you will be learning the specific features of T-SQL, and the...
December 4, 2008 at 2:19 pm
Matt Miller (12/3/2008)
GSquared (12/3/2008)
December 4, 2008 at 11:53 am
Have the first proc create a temp table. As each proc is called, insert your logging data into that same temp table (assuming they are all called in the...
December 4, 2008 at 11:48 am
skjoldtc (12/2/2008)
December 4, 2008 at 11:39 am
Glad I could help. Well done on fixing it.
December 4, 2008 at 11:32 am
As has been mentioned already, I love working myself out of a job. I've just about done that with my current employer, and I'm just about ready to move...
December 4, 2008 at 11:27 am
It won't matter as much in a Group By as it does in a Where, since the Where clause problem is table/index scans instead of seeks, and that doesn't apply...
December 3, 2008 at 9:31 am
Viewing 15 posts - 11,791 through 11,805 (of 14,953 total)