Comments
Sort by recent activity
I feel kinda sheepish. There was some code I was adding to the script in order to insert data into the tables as it went along. Turns out this extra code was causing the problem.
Product works great!
Justin / comments
I feel kinda sheepish. There was some code I was adding to the script in order to insert data into the tables as it went along. Turns out this extra code was causing the problem.
Product works grea...
We do not have any stored procedures that reference tables in a fully qualified name down to the database. In all of our stored procedures the name is qualified to the owner
e.g. SELECT @PipePartGUID = PipePartGUID, @FinishGUID = FinishGUID
FROM dbo.PIPE_tblPartHangerFinishJoins
WHERE dbo.PIPE_tblPartHangerFinishJoins.PartHangerFinishJoinGUID = @PartHangerFinishJoinGUID
Justin / comments
We do not have any stored procedures that reference tables in a fully qualified name down to the database. In all of our stored procedures the name is qualified to the owner
e.g.SELECT @PipePartGUI...
Thanks for your reply. The syscomments table was exactly what I needed.
Justin / comments
Thanks for your reply. The syscomments table was exactly what I needed.
Justin