Viewing 15 posts - 256 through 270 (of 530 total)
Thanx for sharing my conundrum. Do you know any good place to ask this question? Like some MS forum which is used my the developers?
June 30, 2005 at 4:17 am
Thanx from me too. Maybe you could post in in the scripts section? I am quite sure others will profit from it's use...
//Hanslindgren
June 29, 2005 at 10:34 am
Thanx for understanding
June 29, 2005 at 9:53 am
'Increase performance'... Yes, if you do not actually access the text that the 16 byte pointers are pointing to. That actually degrades your performance...
June 29, 2005 at 9:52 am
... and DBs are usually built for speed and performance and not only for convenience of DB developers. So what you (Jeff Gray) save in...
June 29, 2005 at 8:43 am
Well.. It depends
If you do testing you will see that sometimes temp tables are faster and sometimes temp variables are faster. They both...
June 29, 2005 at 8:16 am
True, best not to do. And best not to do it many times
Reading http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=181099 made me want to specify that it is probably better to...
June 29, 2005 at 7:53 am
Well, hmm. You could run Profiler at all times. But I guess it also counts as running query.
Or you can do a script that executes sp_who/sp_who2 and automatically runs DBCC...
June 29, 2005 at 3:38 am
You could bake your own script using the undocumented SPs 'sp_MSforeachdb', 'sp_MSforeachtable' and from there construct and execute a select, for every table in every database, with a WHERE clause, on the columns that...
June 29, 2005 at 3:28 am
Yeah, I guess you are right. Though the idea might be interesting to consider. An aditional table would be perfect if you could rely 100% on the SQL Servers ability...
June 29, 2005 at 3:22 am
This was one of the best QODs/Answers so far!!
Not ambigous and shows the problematics with short questions/answers. It just simply cannot be answerd in any other way based on such a limited...
June 29, 2005 at 2:47 am
Hmm. What about performance? Say your data is always close to 8000 chars and you access it very seldomly. Would it not make sense to make it a text (not in-row) to improve...
June 29, 2005 at 2:19 am
But the Oracle way of optimizing performance without rewriting the client application can be useful. Though I havn't had any practical use for it yet either
June 28, 2005 at 10:37 am
Yeah, I guess you are right. Though it means creating a computed column and using it. One benefit in Oracle is that you can examine the queries executed and to tune them, you...
June 28, 2005 at 10:08 am
Viewing 15 posts - 256 through 270 (of 530 total)