Viewing 15 posts - 6,511 through 6,525 (of 7,467 total)
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
Check uot SQLDMO is BOL.
It has scripting capabilities.
July 31, 2005 at 8:09 am
Check uot SQLDMO is BOL.
It has scripting capabilities.
July 31, 2005 at 8:09 am
go straight forward to sp4, gon't go to start, you'll not receive 2000 startmoney
MS servicepacks are cumulatively.
July 31, 2005 at 8:07 am
Thanks for the response.
i'll have my network-guys check this.
In the...
July 31, 2005 at 8:01 am
Can you post the job (create ddl) you are runing to "correct" the stats ?
btw : e.g. [_WA_Sys_BENENNUNG_3D5E1FD2] is an autogenerated system statistic.
July 28, 2005 at 12:50 am
If this is the actual copy, check your applications errorlog (response.write(exc.tostring())) !
You are using "WHERE SalesID = @SalesD"; but the parameter you provide calls it @SalesID
July 27, 2005 at 12:30 am
Indexdefrag is also less blocking than dbreindex, but it doesn't do the same phisical thing.
We use Indexdefrag when our productionmill is active (24/7) and we use dbreindex during planed production maintenance...
July 27, 2005 at 12:18 am
do you use transactions ?
if yes :
do you commit (data should be there) or rollback (no data will be there) the transaction
Do you...
July 26, 2005 at 8:33 am
Viewing 15 posts - 6,511 through 6,525 (of 7,467 total)