sde is our database. gis.crw_gis_data is how the table is listed. Always though that gis is the owner.
I Made the change to -
LINKEDSERVER.sde.gis.crw_g
update LINKEDSERVER.sde.gis.crw_g
Now the error is -
Msg 207, Level 16, State 1, Procedure GIStoCRW, Line 33
Invalid column name 'block'.
Msg 208, Level 16, State 1, Procedure GIStoCRW, Line 33
Invalid object name 'PEAK2GIS.gis.crw_gis_data
NOTE: - block is a column in the DB. And the invalid object error is not seeing the 'sde' part of the name.
Odd it looks like it may not be altering the stored procedure. I'm going to try to start from scratch.
Main Topics
Browse All Topics





by: brejkPosted on 2009-06-16 at 10:24:24ID: 24640203
You are missing one part of fully qualified object name.
hemaName.O bjectName.
is_data
The fully qualified name consists of four parts: ServerName.DatabaseName.Sc
I assume in your case:
LINKEDSERVER is a server name, gis is a database name and crw_gis_data is an object name, so you may be missing a schema name (dbo?). I'm just guessing, but you can try:
LINKEDSERVER.gis.dbo.crw_g