From: ChanKaiShi on
Hi,



I have really weird issue. SQL server is in workgroup, my account in local
administrator's group on machine, default setup so I'm sysadmin as well. I
can register to server with MS just fine, I can not all operations just fine.
But when I try to delete Maintainance Plan (some of them only) I get
following error (Login failed for user ''. The user is not associated with a
trusted SQL Server connection. (.Net SqlClient Data Provider)), in event
viewer I get 2 events (18542 and 17806), both of which showing SSPI handshake
failure with 0x8009030c error code.

Beaing in mind that server is part of workgroup it's using NTLM for
authentication and not kerberos. What can be the reason for this behaviour?



G


From: EugeneZ on
try solution from http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=98114

1. Select the ID with the select statement
select * from sysmaintplan_plans

2. Replace with the selected ID and run the delete statements
delete from sysmaintplan_log where plan_id = ''

delete from sysmaintplan_subplans where plan_id = ''

delete from sysmaintplan_plans where id = ''

3. Delete the SQL Server Jobs from sql agent
--
Thanks,
Eugene Zhitomirsky
MCT, MCDBA, MCP, OCP


"ChanKaiShi" wrote:

> Hi,
>
>
>
> I have really weird issue. SQL server is in workgroup, my account in local
> administrator's group on machine, default setup so I'm sysadmin as well. I
> can register to server with MS just fine, I can not all operations just fine.
> But when I try to delete Maintainance Plan (some of them only) I get
> following error (Login failed for user ''. The user is not associated with a
> trusted SQL Server connection. (.Net SqlClient Data Provider)), in event
> viewer I get 2 events (18542 and 17806), both of which showing SSPI handshake
> failure with 0x8009030c error code.
>
> Beaing in mind that server is part of workgroup it's using NTLM for
> authentication and not kerberos. What can be the reason for this behaviour?
>
>
>
> G
>
>
From: ChanKaiShi on
Thanks,

I don't see that table (sysmaintplan_plans) neither in master or msdb

"EugeneZ" wrote:

> try solution from http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=98114
>
> 1. Select the ID with the select statement
> select * from sysmaintplan_plans
>
> 2. Replace with the selected ID and run the delete statements
> delete from sysmaintplan_log where plan_id = ''
>
> delete from sysmaintplan_subplans where plan_id = ''
>
> delete from sysmaintplan_plans where id = ''
>
> 3. Delete the SQL Server Jobs from sql agent
> --
> Thanks,
> Eugene Zhitomirsky
> MCT, MCDBA, MCP, OCP
>
>
> "ChanKaiShi" wrote:
>
> > Hi,
> >
> >
> >
> > I have really weird issue. SQL server is in workgroup, my account in local
> > administrator's group on machine, default setup so I'm sysadmin as well. I
> > can register to server with MS just fine, I can not all operations just fine.
> > But when I try to delete Maintainance Plan (some of them only) I get
> > following error (Login failed for user ''. The user is not associated with a
> > trusted SQL Server connection. (.Net SqlClient Data Provider)), in event
> > viewer I get 2 events (18542 and 17806), both of which showing SSPI handshake
> > failure with 0x8009030c error code.
> >
> > Beaing in mind that server is part of workgroup it's using NTLM for
> > authentication and not kerberos. What can be the reason for this behaviour?
> >
> >
> >
> > G
> >
> >
From: EugeneZ on
I see : sysmaintplan_plans is for sql server 2005

Tables that exists in SQL Server 2000 msdb are:
sysdbmaintplans
sysdbmaintplan_jobs
sysdbmaintplan_history
sysdbmaintplan_databases
--
Thanks,
Eugene Zhitomirsky
MCT, MCDBA, MCP, OCP


"ChanKaiShi" wrote:

> Thanks,
>
> I don't see that table (sysmaintplan_plans) neither in master or msdb
>
> "EugeneZ" wrote:
>
> > try solution from http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=98114
> >
> > 1. Select the ID with the select statement
> > select * from sysmaintplan_plans
> >
> > 2. Replace with the selected ID and run the delete statements
> > delete from sysmaintplan_log where plan_id = ''
> >
> > delete from sysmaintplan_subplans where plan_id = ''
> >
> > delete from sysmaintplan_plans where id = ''
> >
> > 3. Delete the SQL Server Jobs from sql agent
> > --
> > Thanks,
> > Eugene Zhitomirsky
> > MCT, MCDBA, MCP, OCP
> >
> >
> > "ChanKaiShi" wrote:
> >
> > > Hi,
> > >
> > >
> > >
> > > I have really weird issue. SQL server is in workgroup, my account in local
> > > administrator's group on machine, default setup so I'm sysadmin as well. I
> > > can register to server with MS just fine, I can not all operations just fine.
> > > But when I try to delete Maintainance Plan (some of them only) I get
> > > following error (Login failed for user ''. The user is not associated with a
> > > trusted SQL Server connection. (.Net SqlClient Data Provider)), in event
> > > viewer I get 2 events (18542 and 17806), both of which showing SSPI handshake
> > > failure with 0x8009030c error code.
> > >
> > > Beaing in mind that server is part of workgroup it's using NTLM for
> > > authentication and not kerberos. What can be the reason for this behaviour?
> > >
> > >
> > >
> > > G
> > >
> > >