Viewing 15 posts - 6,541 through 6,555 (of 7,505 total)
differential backups are not incremental, they each contain all differences since the last full backup.
If you want to use incremental backups, activate full (or bulk logged) recovery model and use...
September 9, 2005 at 12:32 am
Using this sqlagent job, it works fine over here. This job is scheduled on all our servers one a week.
As you can see I encountered a problem using the...
September 9, 2005 at 12:17 am
September 5, 2005 at 7:58 am
May I add this has been a guideline for quite some time now : ![]()
August 26, 2005 at 1:10 am
Keep in mind NOT to have your website run with sa-privilages !
but you'll need security-admin privileges
Keep in mind, one should prefer "least authorities" above "all privileges"
August 26, 2005 at 1:00 am
That's how it works for me ![]()
All my sql7 and sql2k servers have these parameters.
I did forget to mention -T3605 makes sqlserver write this...
August 26, 2005 at 12:38 am
if you want deadlock-explanation (involved spids and statements) add these parameters to your sqlserver startup parameters :
-T1204
and
-T3605
August 26, 2005 at 12:19 am
use the -c parameter
from BOL isql-utility :
-c cmd_end
Specifies the command terminator. By default, commands are terminated and sent to SQL Server 2000 by entering GO on a line...
August 25, 2005 at 1:25 am
in addition to wz700's reply :
regarding the linked server : it depends on how the linked server is defined at your local...
August 25, 2005 at 12:42 am
- wich version of sqlserver are you using ?
- does the table have a clustering index ? (indexid = 1)
August 24, 2005 at 1:22 am
maybe this can be used ...
-- how to determin SQLServer Uptime
-- Tracking Uptime by Brian Moran http://www.winnetmag.com/SQLServer/Article/ArticleID/38042/SQLServer_38042.html
--
SELECT @@servername as ServerName, datediff(mi, login_time, getdate()) as SQLServer_UpTime_Minutes
FROM...
August 24, 2005 at 1:15 am
Check out cadebryant 's article
: http://www.sqlservercentral.com/scripts/contributions/439.asp
![]()
August 23, 2005 at 6:23 am
it's always a gamble with this question since there are more than one errors !
use master e.g. is not mandatory, it can be any database.
August 23, 2005 at 12:04 am
Did you also switch service-accounts ?
did you kick out builtin-administrators ? If yes, check sqlagent is not running on localsystem !
Did you have a blanc sa-password
July 31, 2005 at 8:12 am
Viewing 15 posts - 6,541 through 6,555 (of 7,505 total)