Viewing 15 posts - 6,346 through 6,360 (of 7,471 total)
It's not exactly what I was searching for, but maybe I'll comeup with it later :
- http://www.sql-server-performance.com/reducing_locks.asp
- http://www.sql-server-performance.com/sf_block_prevention.asp
- http://support.microsoft.com/kb/q193095/
February 15, 2006 at 12:54 am
I was aware of the concept you had in mind , but I don't think this is implemented in sql2005.
I think Windows WLM...
February 14, 2006 at 5:34 am
This is the same debatecontext like for NULLs.
OK, DRI is a pain in the but for developers, but it guarantees some data related...
February 14, 2006 at 4:06 am
in addition to PW 's reply ...
is the create table for the temptb also within this transaction ?
I've read about this situation...
February 14, 2006 at 1:16 am
how recent are your statistics ?
run sp_updatestats and dbcc updateusage ('yourdb') with count_rows.
This may interfere with ongoing operations !
Then check your...
February 14, 2006 at 1:12 am
just a wilde shot ...
The hostname is determinde by data from the connection string.
What's the application name that's shown ?
In case of excell...
February 14, 2006 at 12:41 am
It might make sence to run sp_updatestats and dbcc updateusage(0) with count_rows manualy. This may interfere with ongoing operations !
Then try your procedure again
February 14, 2006 at 12:34 am
If your applications connect using the IP-address there will be no problem.
just be sure to follow this: http://www.databasejournal.com/scripts/article.php/1496451
and...
February 10, 2006 at 3:59 am
February 10, 2006 at 3:48 am
February 10, 2006 at 3:09 am
imo if you allocate a drive letter (net use z) , you should also unallocate it (net use z /delete).
Unless offcourse this is an action that would be performed very often.
Then...
February 10, 2006 at 12:11 am
who needs a drive when you have UNC ?
February 9, 2006 at 7:46 am
"Change your recovery option to Simple this will prevent the log from capturing all the data and filling up" ....
Nop.
It will depend on your...
February 9, 2006 at 5:31 am
Log files will only shrink up to the last active log chunk.
so it may be needed to run the shrink-file x-times.
-- Shrink_TrxLog.SQL
--INF:...
February 9, 2006 at 4:56 am
Maybe you'll find some script a the SSC-scripts section.
Here's one I install by default for dev-support :
-- it uses the msdb-tables and will...
February 9, 2006 at 4:52 am
Viewing 15 posts - 6,346 through 6,360 (of 7,471 total)