Showing posts with label iget. Show all posts
Showing posts with label iget. Show all posts

Monday, March 26, 2012

Error 823 with msdb

When I try to create a new Maintenance Plan or revise an existing one I
get the following error:
Error: 823, Severity: 24, State: 2
Microsoft SQL-DMO (ODBC SQL State:HY000)
Error 823: I/O error (torn page) detected during read at offsett
0x000000000f0000 in file 'd:\sqldata\MSSQL\data\msdbdata.mdf'.
There are no known disk problems that I can detect. The existing
Maintenance Plans run fine. I do not have a backup of msdb prior to when
this problem started (I have no idea of when it started, it only appears
when I try to modify the maintenance plan).
I can easily recreate the maintenance plans but I need to fix the problem
with msdb first. Can msdb be repaired, can I empty it to start fresh, can I
use the msdb from an original install'
Any suggestions are greatly appreciated.
Thanks
Russ StevensI just tried to repair msdb
DBCC CHECKDB ('msdb', REPAIR_ALLOW_DATA_LOSS)
It fixed 6 errors - I now have a bigger mess <g> - am getting the following
error (and other strange errors) when I try to modify a Maintenance Plan;
Error 170: Line 1: Incorrect syntax near ','.
I need a clean working msdb - appreciate any help.
Thanks
Russ Stevens|||Anytime you run a dbcc checkdb with repair_allow_data_loss you risk data
integrity. there is no way to know what kind of data is lost etc. In
your case, you have to recreate the maintenance plan, which should not
be a big issue. In fact if that is the only problem that you get after
the repair, you should be happy.
Alternatively you can always restore from backup
Yih-Yoon Lee
My blog http://www.mssql-tools.com/blog
E-mail: yihyoon.online@.gmail.com
/* remove .online to send me e-mail */
Russell Stevens wrote:
> I just tried to repair msdb
> DBCC CHECKDB ('msdb', REPAIR_ALLOW_DATA_LOSS)
> It fixed 6 errors - I now have a bigger mess <g> - am getting the followin
g
> error (and other strange errors) when I try to modify a Maintenance Plan;
> Error 170: Line 1: Incorrect syntax near ','.
> I need a clean working msdb - appreciate any help.
> Thanks
> Russ Stevens
>|||Yih-Yoon,
<<In your case, you have to recreate the maintenance plan, which should not
be a big issue. In fact if that is the only problem that you get after
the repair, you should be happy.>>
No - I am not happy <g> - I couldn't create a maintenance plan before the
repair or after the repair. I can't add a plan or revise a plan. Until msdb
is fixed, I am dead in the water (the existing plans still run fine). And I
can't restore from an msdb backup as I evidently don't have one that was
made before the problem started (I only keep a few weeks).
Looks like I need to rebuild the master and start over. It just seems that
MS should have a way of rebuilding just msdb without having to rebuild the
master.
Thanks
Russ Stevens|||There is a way to rebuild msdb from scratch. May not be a supported one.
Try this on a test server before doing this on a production server
Start SQL Server from the command prompt recover just the master
database, such as sqlservr.exe -c -f -T3608 -T4022
you can then connect to sql server from query analzyer (-f means yo
uwill only get single connection), then you can delete MSDB database.
There is a script in mssql\install folder called instmsdb.sql. This is
the script to recreate MSDB database.
I have to warn you this is probably not a supported solution by
Microsoft. I am not responsible for any damage But if you are
thinking of rebuilding master database anyway, why not give this a try?
the idea is test it thoroughly and make sure it test in your development
server.
Yih-Yoon Lee
My blog http://www.mssql-tools.com/blog
E-mail: yihyoon.online@.gmail.com
/* remove .online to send me e-mail */
Russell Stevens wrote:
> Yih-Yoon,
> <<In your case, you have to recreate the maintenance plan, which should no
t
> be a big issue. In fact if that is the only problem that you get after
> the repair, you should be happy.>>
> No - I am not happy <g> - I couldn't create a maintenance plan before the
> repair or after the repair. I can't add a plan or revise a plan. Until msd
b
> is fixed, I am dead in the water (the existing plans still run fine). And
I
> can't restore from an msdb backup as I evidently don't have one that was
> made before the problem started (I only keep a few weeks).
> Looks like I need to rebuild the master and start over. It just seems that
> MS should have a way of rebuilding just msdb without having to rebuild the
> master.
> Thanks
> Russ Stevens
>|||Yih-Yoon,
I suspect the instmsdb.sql script is also used by the rebuildm.exe
utility. I didn't want to chance it. I rebuilt everything, am back on line
(after an all nighter).
Needless to say I was quite amazed that after rebuilding, my sa password
had been set to a blank - no message, no warning, I was just open to the
world. How can Microsoft miss something like that?
Thanks for your help.
Russ Stevens|||A rebuild of Master will recreate the structure and base data, but not
repopulate existing data. I would have tried the other solution first.
Drop and rerun the instmsdb.sql script. Then the risk was limited to just
msdb, which contains far less useful information than master.
Also, a good installation recommendation is to always set a responsible
backup strategy for your system databases. School of hard knocks works, but
it is an expensive lesson.
Sincerely,
Anthony Thomas
"Russell Stevens" <rastevens@.aol.com> wrote in message
news:%23tlm6PWAFHA.3504@.TK2MSFTNGP12.phx.gbl...
Yih-Yoon,
I suspect the instmsdb.sql script is also used by the rebuildm.exe
utility. I didn't want to chance it. I rebuilt everything, am back on line
(after an all nighter).
Needless to say I was quite amazed that after rebuilding, my sa password
had been set to a blank - no message, no warning, I was just open to the
world. How can Microsoft miss something like that?
Thanks for your help.
Russ Stevens

Error 823 with msdb

When I try to create a new Maintenance Plan or revise an existing one I
get the following error:
Error: 823, Severity: 24, State: 2
Microsoft SQL-DMO (ODBC SQL State:HY000)
Error 823: I/O error (torn page) detected during read at offsett
0x000000000f0000 in file 'd:\sqldata\MSSQL\data\msdbdata.mdf'.
There are no known disk problems that I can detect. The existing
Maintenance Plans run fine. I do not have a backup of msdb prior to when
this problem started (I have no idea of when it started, it only appears
when I try to modify the maintenance plan).
I can easily recreate the maintenance plans but I need to fix the problem
with msdb first. Can msdb be repaired, can I empty it to start fresh, can I
use the msdb from an original install?
Any suggestions are greatly appreciated.
Thanks
Russ Stevens
I just tried to repair msdb
DBCC CHECKDB ('msdb', REPAIR_ALLOW_DATA_LOSS)
It fixed 6 errors - I now have a bigger mess <g> - am getting the following
error (and other strange errors) when I try to modify a Maintenance Plan;
Error 170: Line 1: Incorrect syntax near ','.
I need a clean working msdb - appreciate any help.
Thanks
Russ Stevens
|||Anytime you run a dbcc checkdb with repair_allow_data_loss you risk data
integrity. there is no way to know what kind of data is lost etc. In
your case, you have to recreate the maintenance plan, which should not
be a big issue. In fact if that is the only problem that you get after
the repair, you should be happy.
Alternatively you can always restore from backup
Yih-Yoon Lee
My blog http://www.mssql-tools.com/blog
E-mail: yihyoon.online@.gmail.com
/* remove .online to send me e-mail */
Russell Stevens wrote:
> I just tried to repair msdb
> DBCC CHECKDB ('msdb', REPAIR_ALLOW_DATA_LOSS)
> It fixed 6 errors - I now have a bigger mess <g> - am getting the following
> error (and other strange errors) when I try to modify a Maintenance Plan;
> Error 170: Line 1: Incorrect syntax near ','.
> I need a clean working msdb - appreciate any help.
> Thanks
> Russ Stevens
>
|||Yih-Yoon,
<<In your case, you have to recreate the maintenance plan, which should not
be a big issue. In fact if that is the only problem that you get after
the repair, you should be happy.>>
No - I am not happy <g> - I couldn't create a maintenance plan before the
repair or after the repair. I can't add a plan or revise a plan. Until msdb
is fixed, I am dead in the water (the existing plans still run fine). And I
can't restore from an msdb backup as I evidently don't have one that was
made before the problem started (I only keep a few weeks).
Looks like I need to rebuild the master and start over. It just seems that
MS should have a way of rebuilding just msdb without having to rebuild the
master.
Thanks
Russ Stevens
|||There is a way to rebuild msdb from scratch. May not be a supported one.
Try this on a test server before doing this on a production server
Start SQL Server from the command prompt recover just the master
database, such as sqlservr.exe -c -f -T3608 -T4022
you can then connect to sql server from query analzyer (-f means yo
uwill only get single connection), then you can delete MSDB database.
There is a script in mssql\install folder called instmsdb.sql. This is
the script to recreate MSDB database.
I have to warn you this is probably not a supported solution by
Microsoft. I am not responsible for any damage But if you are
thinking of rebuilding master database anyway, why not give this a try?
the idea is test it thoroughly and make sure it test in your development
server.
Yih-Yoon Lee
My blog http://www.mssql-tools.com/blog
E-mail: yihyoon.online@.gmail.com
/* remove .online to send me e-mail */
Russell Stevens wrote:
> Yih-Yoon,
> <<In your case, you have to recreate the maintenance plan, which should not
> be a big issue. In fact if that is the only problem that you get after
> the repair, you should be happy.>>
> No - I am not happy <g> - I couldn't create a maintenance plan before the
> repair or after the repair. I can't add a plan or revise a plan. Until msdb
> is fixed, I am dead in the water (the existing plans still run fine). And I
> can't restore from an msdb backup as I evidently don't have one that was
> made before the problem started (I only keep a few weeks).
> Looks like I need to rebuild the master and start over. It just seems that
> MS should have a way of rebuilding just msdb without having to rebuild the
> master.
> Thanks
> Russ Stevens
>
|||Yih-Yoon,
I suspect the instmsdb.sql script is also used by the rebuildm.exe
utility. I didn't want to chance it. I rebuilt everything, am back on line
(after an all nighter).
Needless to say I was quite amazed that after rebuilding, my sa password
had been set to a blank - no message, no warning, I was just open to the
world. How can Microsoft miss something like that?
Thanks for your help.
Russ Stevens
|||A rebuild of Master will recreate the structure and base data, but not
repopulate existing data. I would have tried the other solution first.
Drop and rerun the instmsdb.sql script. Then the risk was limited to just
msdb, which contains far less useful information than master.
Also, a good installation recommendation is to always set a responsible
backup strategy for your system databases. School of hard knocks works, but
it is an expensive lesson.
Sincerely,
Anthony Thomas

"Russell Stevens" <rastevens@.aol.com> wrote in message
news:%23tlm6PWAFHA.3504@.TK2MSFTNGP12.phx.gbl...
Yih-Yoon,
I suspect the instmsdb.sql script is also used by the rebuildm.exe
utility. I didn't want to chance it. I rebuilt everything, am back on line
(after an all nighter).
Needless to say I was quite amazed that after rebuilding, my sa password
had been set to a blank - no message, no warning, I was just open to the
world. How can Microsoft miss something like that?
Thanks for your help.
Russ Stevens

Friday, February 17, 2012

Error 21776: PUBLISHER_NAME not found in DistributionPublishers collection

While trying to set up remote distribution on server PUBLISHER_NAME, I
get the above error when trying to specify the remote distributor.
(Error 21776: PUBLISHER_NAME not found in DistributionPublishers
collection on DISTRIBUTOR_NAME)
However, I have set up distribution on DISTRIBUTOR_NAME, and in the
Publishers tab of that window, I have checked the entry for
PUBLISHER_NAME. The alias for that server matches exactly the
PUBLISHER_NAME.
Do I need to restart the SQL Server for this entry to be acknowledged?
Is there some other step of configuration I am missing? Why doesn't the
PUBLISHER_NAME see that it's name is indeed on the authorized publisher
list for DISTRIBUTOR_NAME?
Thanks in advance for any help,
Jason
Its hard to say. Can you connect with your distributor and issue the
following commands for me. Post the results back here.
On your distributor
sp_helpdistpublisher 'RemotePublisherName'
On your remote publisher issue the following
sp_helpdistpublisher 'RemotePublisherName'
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
<iaesun@.yahoo.com> wrote in message
news:1112369037.970196.9940@.l41g2000cwc.googlegrou ps.com...
> While trying to set up remote distribution on server PUBLISHER_NAME, I
> get the above error when trying to specify the remote distributor.
> (Error 21776: PUBLISHER_NAME not found in DistributionPublishers
> collection on DISTRIBUTOR_NAME)
> However, I have set up distribution on DISTRIBUTOR_NAME, and in the
> Publishers tab of that window, I have checked the entry for
> PUBLISHER_NAME. The alias for that server matches exactly the
> PUBLISHER_NAME.
> Do I need to restart the SQL Server for this entry to be acknowledged?
> Is there some other step of configuration I am missing? Why doesn't the
> PUBLISHER_NAME see that it's name is indeed on the authorized publisher
> list for DISTRIBUTOR_NAME?
> Thanks in advance for any help,
> Jason
>
|||i'm very sorry for taking so long to get back to you. i was told to
stop setting up publishing and be a developer for a couple of weeks.
but that's over now, so i am back to this task.
firstly, thank you very much for your help, here are the results you
requested to see:
sp_helpdistpublisher 'RemotePublisherName' run on the distributor
reported:
"The remote server does not exist or has not been designated as a valid
publisher."
sp_helpdistpublisher 'RemoteDistributorName' run on the publisher
reported:
'RemoteDistributorName' is not configured as a Distributor.
however i have verified that on RemoteDistributorName that
RemotePublisherName is listed in the Publishers tab of the "Publisher
and Distrubutor Properties" window, and it is checked as a valid
publisher.
jason

Error 21774

When I try to go into the dependencies of a table on my SQL 2k database, I
get the following error message (twice) and then it takes me to the
dependencies screen.
Error 21774: [SQL-DMO] The ID '377104434' was not found in the Views
collection.
Can anyone help me resolve why I am getting this? Thank you.
DavidHi
Is anyone creating/deleting objects whilst you are running this process?
Have you run DBCC CHECKDB on this database?
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:exrzmRwCGHA.1384@.TK2MSFTNGP11.phx.gbl...
> When I try to go into the dependencies of a table on my SQL 2k database, I
> get the following error message (twice) and then it takes me to the
> dependencies screen.
> Error 21774: [SQL-DMO] The ID '377104434' was not found in the Views
> collection.
> Can anyone help me resolve why I am getting this? Thank you.
> David
>|||Nobody was in the database except me.
I ran CHECKDB and got the message below at the end.
CHECKDB found 0 allocation errors and 0 consistency errors in database
'MCFIData'.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
> Hi
> Is anyone creating/deleting objects whilst you are running this process?
> Have you run DBCC CHECKDB on this database?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:exrzmRwCGHA.1384@.TK2MSFTNGP11.phx.gbl...
>|||Hi David
Are these errors re-creatable?
Is there an entry in sysobjects for id = 377104434?
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
> Nobody was in the database except me.
> I ran CHECKDB and got the message below at the end.
> CHECKDB found 0 allocation errors and 0 consistency errors in database
> 'MCFIData'.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
>|||> I ran CHECKDB and got the message below at the end.
Try DBCC CHECKCATALOG.
Happy Holidays
Dan Guzman
SQL Server MVP
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
> Nobody was in the database except me.
> I ran CHECKDB and got the message below at the end.
> CHECKDB found 0 allocation errors and 0 consistency errors in database
> 'MCFIData'.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
>|||DBCC CHECKCATELOG was clean also.
David
"Dan Guzman" <guzmanda@.nospam-online.sbcglobal.net> wrote in message
news:OAnbYzwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Try DBCC CHECKCATALOG.
> --
> Happy Holidays
> Dan Guzman
> SQL Server MVP
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>|||Yes, I did a SELECT * FROM sysobjects WHERE id = 377104434 and it returned a
result with information about a completely different table in the database
named PayInfoNHS. The table I got the error on is named tblMenus and has
absolutely no relationships with any tables, let alone PayInfoNHS. HTH.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Hi David
> Are these errors re-creatable?
> Is there an entry in sysobjects for id = 377104434?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>|||I don't know if this helps, but every time I go into design of ANY table
using EM I get this error message.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Hi David
> Are these errors re-creatable?
> Is there an entry in sysobjects for id = 377104434?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>|||Have you tried disconnecting and reconnecting? Perhaps it's an EM refresh
issue.
Happy Holidays
Dan Guzman
SQL Server MVP
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:ebim3RyCGHA.3920@.tk2msftngp13.phx.gbl...
>I don't know if this helps, but every time I go into design of ANY table
>using EM I get this error message.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
>|||Hi David
If you run Display Dispendecies from All Tasks on the right click menu do
you have the same error?
This runs sp_MSdependencies e.g.
exec sp_MSdependencies N'[dbo].[tblMenus]', null, 1053183
so can run this from query analyser and even debug it from the object
browser. If this does not give an error then the error is (probably) to do
with the display of the dialogue and you may want to run SQL profiler to see
if you can track it down.
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:ebim3RyCGHA.3920@.tk2msftngp13.phx.gbl...
>I don't know if this helps, but every time I go into design of ANY table
>using EM I get this error message.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
>

Error 21774

When I try to go into the dependencies of a table on my SQL 2k database, I
get the following error message (twice) and then it takes me to the
dependencies screen.
Error 21774: [SQL-DMO] The ID '377104434' was not found in the Views
collection.
Can anyone help me resolve why I am getting this? Thank you.
David
Hi
Is anyone creating/deleting objects whilst you are running this process?
Have you run DBCC CHECKDB on this database?
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:exrzmRwCGHA.1384@.TK2MSFTNGP11.phx.gbl...
> When I try to go into the dependencies of a table on my SQL 2k database, I
> get the following error message (twice) and then it takes me to the
> dependencies screen.
> Error 21774: [SQL-DMO] The ID '377104434' was not found in the Views
> collection.
> Can anyone help me resolve why I am getting this? Thank you.
> David
>
|||Nobody was in the database except me.
I ran CHECKDB and got the message below at the end.
CHECKDB found 0 allocation errors and 0 consistency errors in database
'MCFIData'.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
> Hi
> Is anyone creating/deleting objects whilst you are running this process?
> Have you run DBCC CHECKDB on this database?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:exrzmRwCGHA.1384@.TK2MSFTNGP11.phx.gbl...
>
|||Hi David
Are these errors re-creatable?
Is there an entry in sysobjects for id = 377104434?
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
> Nobody was in the database except me.
> I ran CHECKDB and got the message below at the end.
> CHECKDB found 0 allocation errors and 0 consistency errors in database
> 'MCFIData'.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
>
|||> I ran CHECKDB and got the message below at the end.
Try DBCC CHECKCATALOG.
Happy Holidays
Dan Guzman
SQL Server MVP
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
> Nobody was in the database except me.
> I ran CHECKDB and got the message below at the end.
> CHECKDB found 0 allocation errors and 0 consistency errors in database
> 'MCFIData'.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:uh2SRbwCGHA.3920@.tk2msftngp13.phx.gbl...
>
|||DBCC CHECKCATELOG was clean also.
David
"Dan Guzman" <guzmanda@.nospam-online.sbcglobal.net> wrote in message
news:OAnbYzwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Try DBCC CHECKCATALOG.
> --
> Happy Holidays
> Dan Guzman
> SQL Server MVP
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>
|||Yes, I did a SELECT * FROM sysobjects WHERE id = 377104434 and it returned a
result with information about a completely different table in the database
named PayInfoNHS. The table I got the error on is named tblMenus and has
absolutely no relationships with any tables, let alone PayInfoNHS. HTH.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Hi David
> Are these errors re-creatable?
> Is there an entry in sysobjects for id = 377104434?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>
|||I don't know if this helps, but every time I go into design of ANY table
using EM I get this error message.
David
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
> Hi David
> Are these errors re-creatable?
> Is there an entry in sysobjects for id = 377104434?
> John
> "David Chase" <dlchase@.lifetimeinc.com> wrote in message
> news:e9O$wnwCGHA.2480@.TK2MSFTNGP10.phx.gbl...
>
|||Have you tried disconnecting and reconnecting? Perhaps it's an EM refresh
issue.
Happy Holidays
Dan Guzman
SQL Server MVP
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:ebim3RyCGHA.3920@.tk2msftngp13.phx.gbl...
>I don't know if this helps, but every time I go into design of ANY table
>using EM I get this error message.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
>
|||Hi David
If you run Display Dispendecies from All Tasks on the right click menu do
you have the same error?
This runs sp_MSdependencies e.g.
exec sp_MSdependencies N'[dbo].[tblMenus]', null, 1053183
so can run this from query analyser and even debug it from the object
browser. If this does not give an error then the error is (probably) to do
with the display of the dialogue and you may want to run SQL profiler to see
if you can track it down.
John
"David Chase" <dlchase@.lifetimeinc.com> wrote in message
news:ebim3RyCGHA.3920@.tk2msftngp13.phx.gbl...
>I don't know if this helps, but every time I go into design of ANY table
>using EM I get this error message.
> David
> "John Bell" <jbellnewsposts@.hotmail.com> wrote in message
> news:Of6NEwwCGHA.528@.TK2MSFTNGP09.phx.gbl...
>