Viewing 15 posts - 1 through 15 (of 17 total)
I suggest you take a look at Books Online -> multiserver administration.
December 2, 2004 at 2:02 pm
Or look at the sql error log if it hasn't been recycled yet since the last restart.
November 24, 2004 at 1:02 pm
try two more things:
1. make sure the destination D: drive has enough free space for the backup.
2. Use "with format" in the backup statement.
November 22, 2004 at 10:09 am
It requires a sql service restart to reflect the change made by the stored procedures.
November 8, 2004 at 8:07 am
You can try these extended stored procedures:
declare @mssqlservice nvarchar(100),
@sqlserveragent nvarchar(100)
select @mssqlservice = 'mssqlserver',
@sqlserveragent = 'sqlserveragent'
exec master..xp_servicecontrol N'QUERYSTATE', @mssqlservice
exec master..xp_servicecontrol N'QUERYSTATE', @sqlserveragent
I don't think you can always do this....
October 26, 2004 at 1:21 pm
You need to join sysusers, syspermissions, sysprotects and sysobjects tables in order to see complete info. Replace the name column in sysusers with your user name.
You can only have create permissions if you're...
October 26, 2004 at 1:00 pm
YOu can create a user table to hold the status of DBCC process. If you run this in QA, start with a getdate() and end with the same function.
create...
October 12, 2004 at 2:55 pm
Do you mean the table name also shows up in the diagram name?
September 1, 2004 at 12:37 pm
My gutt tells me you've got a uncommitted transaction going on when the log becomes full. Therefore there is no way to truncate it. You will have to either expand...
August 18, 2004 at 12:24 pm
You can use @rowcount = 10000 in a loop and having each update push forward until it reaches the limit. Then print out a line "update 10000 rows successful". Then...
August 17, 2004 at 1:00 pm
It sounds like a blocking issue. It could also be resource contention. Set up a job that runs frequently that monitors blocking. alert you when blocking happens.
August 17, 2004 at 12:22 pm
If you're using SQL 7.0 , then you'll need a dummy install to get the server name straightened out. For SQL 2k, following Steve's steps.
Seems you intend not to...
August 13, 2004 at 7:40 am
If you don't want to break log shipping, you'll have to keep the secondary dbs in either recovery or standby mode. Neither mode allows transactions. Therefore you can't shrink the...
August 9, 2004 at 9:53 am
depending on your query type...If a query only looks at REC_TYPE and STATE, then the second index appears obsolete. But it has one more key "SOURCE" so in case a query looks...
August 6, 2004 at 12:05 pm
You don't need to mess around with the replication. You can directly truncate the published table without problem. Think of this as the same as a delete.
August 6, 2004 at 11:48 am
Viewing 15 posts - 1 through 15 (of 17 total)