Viewing 15 posts - 6,346 through 6,360 (of 7,467 total)
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
aha, the trigger issue
That's exactly the reason why one should always evaluate if a "procedure" should _always_ be executed when modifying data for...
February 9, 2006 at 12:11 am
... I love stuff like this. Maybe you should submit it to the script library! ...
Done
February 8, 2006 at 3:15 am
select
sum(BalAmt), -- sum does not use columns that have a null-status
sum(BalIntRate)
from DebtCurrBal c with(nolock)
join DebtBase d with(nolock)
on c.DebtBaseKey =...
February 8, 2006 at 2:57 am
check your execution plan !
I presume sqlserver in scanning your full table and suffers a bunch of waits !
"RowId is unique index" Is...
February 8, 2006 at 2:53 am
Viewing 15 posts - 6,346 through 6,360 (of 7,467 total)