Viewing 15 posts - 6,166 through 6,180 (of 7,501 total)
- Did you define indexes for this table ?
- Lets hope you also defined a (unique if possible) clustering index.
- you may want to schedule maintenance for the database/table
(or write...
July 18, 2006 at 4:51 am
Books online "Maximum Capacity Specifications"
---> Standard Edition max 2Gb
July 17, 2006 at 3:42 am
just my 2 Ct
-
Avoid predicates containing functions !!! (e.g. SUBSTRING
July 14, 2006 at 6:05 am
you should use Cluster Administrator to stop/start all clustered applications !!!
Clustermanager loose connectivity info an try to failover ... it the stop/start is taking more than a "isalive"-poll-interval.
July 14, 2006 at 3:05 am
- How about the connection-pools ? Did they reach the timeouts ?
- Did the users stop and start their applications ? or just tried executing some stuff with the ongoing...
July 13, 2006 at 8:03 am
did you restart the services using CLUSTER MANAGER ?
If not, that will be your problem. ![]()
July 13, 2006 at 7:50 am
And probably INTEGER would be mutch faster
and preferable because you have precision 0.
July 13, 2006 at 7:46 am
I was probably updating my previous reply whilst you replied to it ![]()
It does not need to be in single user mode, but may...
July 13, 2006 at 7:05 am
you can modify the LOGICAL filename.
If you want to alter the physical filename , you're stuck with detatch / rename-file (e.g. with explorer) / attatch
from BOL :
July 13, 2006 at 6:53 am
btw precedence has been changed with sql2000 sp4 ![]()
Let's hope they don't do that again ![]()
July 13, 2006 at 6:04 am
add this one to "10 things i wish my developers knew about sql"
Make sure you use the datatype of your columns ! because you avoid your dbms to translate it...
July 13, 2006 at 4:58 am
you can query inter-collation !
but you have to convert to the same collation in the query :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=4&messageid=95954
July 12, 2006 at 11:55 pm
can you run sp_updatestats and dbcc updateusage , just to make sure the statistics are OK ?
July 11, 2006 at 11:44 pm
afaik this is set with the connection !
Connection Pooling in .NET Applications
conn.ConnectionString = "...;Min Pool Size=50";
perfmon can show you the counters.
you may want to...
July 11, 2006 at 1:13 am
just my 2ct
- I use this step in a job:
execute @ReturnCode = msdb.dbo.sp_add_jobstep @job_id = @JobID , @step_id = 9, @cmdexec_success_code = 0, @on_success_action = 1, @on_success_step_id = 0,...
July 11, 2006 at 1:07 am
Viewing 15 posts - 6,166 through 6,180 (of 7,501 total)