When I go to SQL Server Management Studio -> Management -> Maintenance Plans -> Right click on the maintenance plan that I want to execute but the option is greyed out.
I have checked and SQL Server Integration Services is running.
I can execute other maintenance plans.
I have even tried modifying this plan without an issue but Execute stays greyed out.
There is no other instance of the plan running at the moment.
I have also disconnected from the SQL Server and connected back but that didn't help either.
I had the same problem. Turns out it was an execution window that was buried. It doesn't show as an "open window" when you look at the taskbar at the SSMS icon, so it's deceptive. ALT-TAB your way through the windows and you should find it.
I need to add a specific column if it does not exist. I have something like the following, but it always returns false:
IF EXISTS(SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'myTableName'
AND COLUMN_NAME = 'myColumnName')
How can …
How do I auto increment the primary key in a SQL Server database table, I've had a look through the forum but can't see how.
I've looked the the properties but can't see an option, I have seen an answer …