Viewing 15 posts - 841 through 855 (of 6,216 total)
I think we might be failing by asking them to get "it". They get the Excel metaphor and I say use that until they realize they've outgrown it, then they'll...
January 16, 2007 at 6:26 am
It's not easy to be a good manager OR a good employee, both take experience and feedback. The most effective feedback comes from a mentor if you can find one,...
January 16, 2007 at 6:20 am
Thanks again to all who posted (or will post). Its a good thread! I'll plan to do a follow up to compare the various cursor options to while loops. I...
January 15, 2007 at 4:46 pm
I think thats a good point Merrill. Cursors can do a lot of work for you if you need them to, managing keysets or the entire table in tempdb so...
January 15, 2007 at 10:55 am
Rebuilding is usually going to cause the size to balloon as SQL allocates working storage for indexing/reindexing. You can reduce it some by doing indexes singly and running really frequent...
January 15, 2007 at 10:14 am
Micheal,
Keep in mind Im not advocating the wide spread usage of cursors. As an industry we've made decent progress towards set based ops and I'd like to see that continue.
"A...
January 15, 2007 at 7:42 am
Its not just as simple as rewriting the code to handle multiple rows. It can be, but not always. One concern is - should all stored procedures be built to...
January 15, 2007 at 7:34 am
Yes, outer tran would hurt you. You replace it by just building in some type of restartability (or planning to do it if something breaks). As long as the internal...
January 15, 2007 at 7:09 am
Do you have a 'before' copy? Might be useful to compare sp_spaceused results table by table. I dont know if its likely or not, but you could have been off...
January 15, 2007 at 6:40 am
Colin, I totally agree about the while loop = cursor. I haven't measured the true overhead of each, but I would be surprised if the cursor wasn't cheaper in some...
January 15, 2007 at 6:30 am
Was a tongue in check question:-) I dont see any issue with the link, think its well within the bounds of what the community would consider ok. The comment was...
January 11, 2007 at 8:01 am
Herb, are you his/her agent?
January 11, 2007 at 5:23 am
Thanks for the follow up. If you ever run into it again, I'd be curious what the query plan looked like, determine why those spurious entries were causing so much...
January 10, 2007 at 11:48 am
Viewing 15 posts - 841 through 855 (of 6,216 total)