Viewing 10 posts - 16 through 25 (of 25 total)
Thanks Guys... I guess I know whats happening now.
I think I'm hitting the limit on maximum number for continuous subscriptions on a distribution server.
I am planning to setup scheduled subscriptions
Shinoj
August 9, 2010 at 10:19 am
You can select it this way and insert it into a table
SELECT COALESCE(@HostNames + ',', '') + host_name
, COALESCE(@LoginNames + ',', '') + login_name
FROM sys.dm_exec_sessions
WHERE
program_name LIKE '%Management...
July 28, 2010 at 5:46 pm
SELECT OBJECT_SCHEMA_NAME(P.object_id), P.* FROM sys.partitions AS P
You may have more than one row for a table in the output - This is based on the number of indexes on the...
July 28, 2010 at 4:42 pm
But why do you need this. As far as your TLog backup is done by log shipping you should be good right ?
Why would you need a Maintenance Plan and...
July 28, 2010 at 4:32 pm
To remove a DB from StandBy/ReadOnly mode to a Read/Write mode, you can use the following syntax
RESTORE DATABASE <DB Name> WITH RECOVERY
Is this what you need?
July 28, 2010 at 4:27 pm
How many subplans do you have? Just One?
January 7, 2010 at 1:36 pm
Can you view the history for the job in the Maintenance Plan? Right click on the job (under SQL Server Agent/Jobs) and View History?
Also check the "Limit size of job...
September 29, 2009 at 10:56 am
Do you think you could use the shared path instead of the mapped drive letter in your jobs?
August 3, 2009 at 5:35 pm
Is your broker enabled on msdb database?
SELECT is_broker_enabled, name FROM sys.databases
If not use the Alter Database command to do so. You might have to stop the agent service to do...
August 3, 2009 at 4:01 pm
Viewing 10 posts - 16 through 25 (of 25 total)