Viewing 15 posts - 6,166 through 6,180 (of 7,505 total)
actualy you can name your backup files whatever you want.
And in fact, you can also name your sqlserver db-files whatever you want.
If you stick with the guidelines of using the...
July 24, 2006 at 12:09 am
Thumbs up for Collin !
In theory it should be done using Cluster Administrator.
"How to change the network IP addresses of SQL Server virtual servers" :
http://support.microsoft.com/kb/244980/
http://support.microsoft.com/kb/230356
SQLServer itself does...
July 19, 2006 at 5:04 am
indeed sp_updatestats and dbcc updateusage should be part of your maintenance job ! ![]()
and like you experianced, should also be the first step when...
July 18, 2006 at 11:53 pm
Keep in mind dbcc dbreindex will keep a lock on your table, so others may not be able to use it during the reindex !
If you have updates/deletes on your...
July 18, 2006 at 5:09 am
- 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
Viewing 15 posts - 6,166 through 6,180 (of 7,505 total)