Viewing 15 posts - 6,391 through 6,405 (of 7,471 total)
just to add to peterhe's reply :
1) connection pooling works for the full connection string. and must match each and every bit...
January 13, 2006 at 2:58 am
If you have it captured to file , save the file to a sqlserver and launch queries against that table.
This way you have a quick overview of your large consumers...
December 23, 2005 at 8:16 am
did you use sql-profiler to look what's going on ?
December 23, 2005 at 8:00 am
offcourse .... your previous reply got me back to hinking ....
use yourdb
go
DECLARE @TableName nvarchar(261)
DECLARE @SQLStatement nvarchar(4000)
DECLARE TableList CURSOR LOCAL FAST_FORWARD READ_ONLY FOR
SELECT
QUOTENAME(TABLE_SCHEMA) +
N'.' +
QUOTENAME(TABLE_NAME)
FROM
INFORMATION_SCHEMA.TABLES
WHERE EXISTS
(
...
December 23, 2005 at 7:32 am
count_rows : my mistake. I mixed up DBCC UPDATEUSAGE ('yourdb') with count_rows. which should be done after the reindex as well !
December 23, 2005 at 7:18 am
You've run sp_updatestats.
Did you try to dbcc dbreindex('Yourdb') with count_cows ?
Be carefull, this will invoke heavy locking, so plan it to run in "easy" times.
December 23, 2005 at 12:13 am
You're no alone ...
With this site, you'll never walk alone
December 22, 2005 at 8:27 am
Thanks for the confirmation, Brian.
We did some testing regarding the clusterserviceaccount about 3 years ago.
It works just fine with these minimal rights (login only).
December 22, 2005 at 7:22 am
it even doesn't heed any rights but login because your clusterservices heartbeat uses it.
At our clusters the clustering service only was added as login for the server and it works...
December 22, 2005 at 5:24 am
use profiler to intercept the activity and analyse !
especialy look for hints in statements. You could use a trace-flag for the system to disregard hints and see what th effect...
December 22, 2005 at 5:04 am
you could schedule a job at you "regular" sqlserver and have the steps execute OSQL
to backup the needed databases and then copy them to your safe place.
all steps would...
December 21, 2005 at 6:34 am
Thanks for the link, wich is a nice article.
The problem with these circular references is that I would need to exclude all "new" items that would already be in the...
December 20, 2005 at 6:25 am
oops .. overlooked that because we don't use it in that way
December 15, 2005 at 8:13 am
- with SQLServer2005 you can perform this by granting at schema level.
- In sqlserver2000 you can only add the user to the db_owner group of the database. But then that...
December 15, 2005 at 2:33 am
just my 2ct
nvarchar(..) is double byte so nvarchar(1000) takes max 2000 bytes + length indicator.
making it ntext will allow you to store up to 2G for that column.
Downsides are :
December 15, 2005 at 1:58 am
Viewing 15 posts - 6,391 through 6,405 (of 7,471 total)